/* ==========================================
   CSS Variables - Color Scheme
   ========================================== */
:root {
    /* Primary Colors */
    --deep-forest-green: #4A5C43;
    --warm-off-white: #F5F3EF;

    /* Secondary Color */
    --earthy-gold: #D4A76A;

    /* Accent & Neutral Colors */
    --dark-stone: #3A4A35;
    --mid-gray: #a8a29e;
    --light-gray: #d6d3d1;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--warm-off-white);
    color: var(--dark-stone);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    background-color: var(--warm-off-white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--dark-stone);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-forest-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--earthy-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-btn {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--deep-forest-green);
    background-color: transparent;
    color: var(--deep-forest-green);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.contact-btn:hover {
    background-color: var(--deep-forest-green);
    color: var(--white);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.hero-text {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-stone);
    margin-bottom: 3rem;
}

.hero-text strong {
    font-weight: 700;
    color: var(--deep-forest-green);
}

.hero-logo {
    margin: 3rem auto;
    width: 200px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 3rem;
    border: 2px solid var(--dark-stone);
    background-color: transparent;
    color: var(--dark-stone);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background-color: var(--deep-forest-green);
    border-color: var(--deep-forest-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 92, 67, 0.3);
}

/* ==========================================
   Minimal Waitlist Form
   ========================================== */
.waitlist-form {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.waitlist-input-group input[type="email"] {
    flex: 1;
    font-family: var(--font-secondary);
    padding: 1rem 1.5rem;
    border: 2px solid var(--dark-stone);
    border-radius: 4px;
    background-color: transparent;
    color: var(--dark-stone);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.waitlist-input-group input[type="email"]::placeholder {
    color: var(--mid-gray);
}

.waitlist-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--deep-forest-green);
    background-color: rgba(255, 255, 255, 0.05);
}

.waitlist-input-group button {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    border: 2px solid var(--deep-forest-green);
    background-color: var(--deep-forest-green);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.waitlist-input-group button:hover:not(:disabled) {
    background-color: var(--dark-stone);
    border-color: var(--dark-stone);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 92, 67, 0.3);
}

.waitlist-input-group button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.waitlist-message {
    margin-top: 1rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    text-align: center;
    min-height: 24px;
    transition: opacity 0.3s ease;
}

.waitlist-message.success {
    color: var(--earthy-gold);
}

.waitlist-message.error {
    color: #c53030;
}

.waitlist-message.info {
    color: var(--mid-gray);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--deep-forest-green);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--earthy-gold);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text {
        font-size: 1.75rem;
    }

    .hero-logo {
        width: 150px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .waitlist-form {
        max-width: 100%;
        padding: 0 1rem;
    }

    .waitlist-input-group {
        flex-direction: column;
    }

    .waitlist-input-group input[type="email"],
    .waitlist-input-group button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    .waitlist-input-group input[type="email"],
    .waitlist-input-group button {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }
}