/* Companion.sg static site styles */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #F4F1EB; /* cream background */
    color: #1D1D1D; /* dark text */
    line-height: 1.6;
}

header {
    background-color: #0A1A2F; /* deep navy */
    color: #CAB49F; /* soft gold */
    padding: 20px;
}

header .brand {
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: #CAB49F;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #0A1A2F;
    color: #CAB49F;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons a {
    background-color: #CAB49F;
    color: #0A1A2F;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.cta-buttons a:hover {
    background-color: #b39a80;
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #0A1A2F;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 20px;
    flex: 1 1 280px;
    max-width: 300px;
}

.card h3 {
    margin-top: 0;
    color: #0A1A2F;
}

.blog-preview {
    margin-top: 40px;
}

.blog-preview article {
    margin-bottom: 20px;
}

.blog-preview h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.blog-preview p {
    margin: 0;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #CAB49F;
    color: #0A1A2F;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

form button:hover {
    background-color: #b39a80;
}

.footer {
    background-color: #0A1A2F;
    color: #CAB49F;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.footer nav a {
    color: #CAB49F;
    margin: 0 10px;
    text-decoration: none;
}

.footer nav a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
