/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3d3953;
    --secondary-color: #BFA43A;
    --accent-color: #A6A04E;
    --text-color: #3A2323;
    --light-text: #8B6F6F;
    --background: #ffffff;
    --header-height: 80px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Add scroll margin to all sections */
section[id] {
    scroll-margin-top: var(--header-height);
}

/* Responsive scroll margin */
@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: var(--header-height);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background: #3d3953;
    color: white;
    border: 2px solid #3d3953;
}

.btn-primary:hover {
    background: #fff;
    color: #3d3953;
    border: 2px solid #3d3953;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
}

.email-signup-btn {
    background-color: #3d3953;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s, border 0.3s;
    border: 2px solid #3d3953;
    text-decoration: none;
    display: inline-block;
    align-self: center;
    margin: 2rem auto 0;
}

.email-signup-btn:hover {
    background-color: #fff;
    color: #3d3953;
    border: 2px solid #3d3953;
} 