@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*
|--------------------------------------------------------------------------
| COLOR PALETTE
| 1. #151A22 (Deep Navy/Primary Text & Dark Accent)
| 2. #465048 (Dark Slate Green/Secondary Text & Button Background)
| 3. #BD916F (Soft Brown/Secondary Background & Subtle Accent)
| 4. #C0B283 (Khaki/Subtle Border & Divider)
| 5. #F3F0E6 (Cream/Primary Background)
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| BASE & TYPOGRAPHY
|--------------------------------------------------------------------------
*/
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F3F0E6; /* Cream/Primary Background */
    color: #151A22; /* Deep Navy/Primary Text */
    font-family: 'Inter', sans-serif; /* Inter for body text */
    line-height: 1.6;
}

/* New: Use Playfair Display for all major headings and the logo */
h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, background-color 0.3s;
}

ul {
    list-style: none;
}

/*
|--------------------------------------------------------------------------
| UTILITIES & BUTTONS
|--------------------------------------------------------------------------
*/
.container {
    /* Max width is only applied on larger screens */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px; /* Reduced side padding for better mobile use */
}

.section {
    padding: 60px 0; /* Less vertical padding on mobile */
}

.dark-bg {
    /* Used for section separation in the light theme */
    background-color: #BD916F; /* Soft Brown/Secondary Background */
    color: #151A22; /* Ensure text is dark on the soft brown background */
}

.section-title {
    font-size: 1.8rem; /* Smaller title on mobile */
    margin-bottom: 30px;
    text-align: center; /* Center titles on small screens */
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px; /* Slightly more rounded corners */
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: #465048; /* Dark Slate Green/Button Background */
    color: #F3F0E6; /* Cream for high contrast text */
}

.btn-primary:hover {
    background-color: #556058; /* Slightly lighter shade on hover */
    box-shadow: 0 4px 15px rgba(70, 80, 72, 0.2); /* Accent shadow */
}

.btn-secondary {
    border: 1px solid #465048; /* Dark Slate Green */
    color: #465048; /* Dark Slate Green */
    margin-top: 10px; /* Separated button on mobile */
}

.btn-secondary:hover {
    background-color: rgba(70, 80, 72, 0.1);
}

/*
|--------------------------------------------------------------------------
| NAVIGATION (Mobile first)
|--------------------------------------------------------------------------
*/
.navbar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: rgba(243, 240, 230, 0.95); /* Semi-transparent Cream */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #C0B283; /* Khaki Border */
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.nav-links {
    /* Hide navigation links by default (mobile) */
    display: none;
}

/*
|--------------------------------------------------------------------------
| HERO SECTION (Mobile first)
|--------------------------------------------------------------------------
*/
.hero {
    padding: 100px 0 60px 0;
    text-align: center; /* Center content for mobile readability */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.75rem; /* Slightly larger size */
    line-height: 1.2;
    margin-bottom: 15px;
    /* Dark gradient against the light background */
    background: linear-gradient(to right, #151A22, #465048); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* NEW: Subtle shadow to make the text "pop" more */
    text-shadow: 0 1px 2px rgba(21, 26, 34, 0.1); 
    font-weight: 900; /* Increased weight for impact */
}

.subheadline {
    font-size: 1rem;
    color: #465048; /* Dark Slate Green for subtle headline */
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px; /* Constrain buttons for touch targets */
}
.hero-buttons .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
}

/*
|--------------------------------------------------------------------------
| HOW IT WORKS (Mobile first)
|--------------------------------------------------------------------------
*/
.process-steps {
    display: grid;
    /* Single column layout for mobile */
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
    text-align: left;
}

.step-item {
    background: #BD916F; /* Soft Brown - Card Background */
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #465048; /* Dark Slate Green Accent border */
}

.step-number {
    font-size: 3rem; /* Smaller number for mobile */
    font-weight: 700;
    color: rgba(70, 80, 72, 0.3); /* Muted Dark Slate Green */
    line-height: 1;
    margin-bottom: 10px;
}

.step-item h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-item p {
    color: #151A22; /* Deep Navy text color for content */
    font-size: 0.85rem;
}

/*
|--------------------------------------------------------------------------
| SERVICES GRID (Mobile first)
|--------------------------------------------------------------------------
*/
.services-grid {
    display: grid;
    /* Single column layout for mobile */
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: #BD916F; /* Soft Brown - Card Background */
    padding: 25px;
    border: 1px solid #C0B283; /* Subtle Khaki Border */
    border-radius: 8px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #151A22; /* Deep Navy */
}

.card p {
    color: #465048; /* Dark Slate Green for subtle text */
    font-size: 0.9rem;
}

/*
|--------------------------------------------------------------------------
| WHY US SECTION (Focus Statement & Comparison)
|--------------------------------------------------------------------------
*/
#why-us {
    padding: 0; /* Ensures the wrapper manages spacing */
}

/* New Section: Focus Statement */
.focus-statement-wrapper {
    background-color: #BD916F; /* Soft Brown - Background */
    padding: 40px 16px; /* Specific padding for this part */
    text-align: center;
}

.focus-statement-wrapper .section-title {
    color: #151A22; /* Deep Navy */
    margin-bottom: 20px;
    text-align: center;
}

.focus-statement-content {
    max-width: 800px;
    margin: 0 auto;
}

.focus-statement-content p {
    color: #151A22;
    margin-bottom: 15px;
}

.focus-statement-content .tagline {
    font-style: italic;
    font-weight: 600;
}


/* COMPARISON TABLE - Part of #why-us */
.comparison-table-wrapper {
    padding: 60px 0; /* Vertical padding to separate from focus statement */
    background-color: #F3F0E6; /* Primary Background */
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr; /* Stack columns on mobile */
    gap: 20px;
}

.col {
    padding: 30px;
    border-radius: 8px;
}

.others {
    background: #F3F0E6; /* Cream */
    color: #465048; /* Muted text */
    border: 1px solid #C0B283;
}

.us {
    background: #BD916F; /* Soft Brown */
    border: 1px solid #465048; /* Dark Slate Green Accent */
    color: #151A22; /* Dark text on Soft Brown background */
}

.col h3 {
    margin-bottom: 15px;
}

.col ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.others ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #D35F5F; /* Muted Red */
    font-weight: bold;
}

.us ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #465048; /* Dark Slate Green Accent */
    font-weight: bold;
}

/*
|--------------------------------------------------------------------------
| FOUNDER (Mobile first)
|--------------------------------------------------------------------------
*/
.founders .section-title {
    text-align: center;
}

.founder-single-wrapper {
    display: flex;
    justify-content: center;
}

.founder {
    background: #BD916F; /* Soft Brown */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #C0B283; /* Subtle Khaki Border */
    max-width: 100%; /* Full width on mobile */
    text-align: center;
}

.founder h3 {
    margin-bottom: 5px;
}

.founder p {
    color: #465048; /* Dark Slate Green */
    font-style: italic;
    font-size: 0.9rem;
}

/*
|--------------------------------------------------------------------------
| FAQ (Mobile first)
|--------------------------------------------------------------------------
*/
.faq-item {
    border-bottom: 1px solid #C0B283; /* Subtle Khaki Border */
    padding: 15px 0;
}

.faq-item h4 {
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: #151A22; /* Deep Navy */
}

.faq-item p {
    color: #465048; /* Dark Slate Green */
    font-size: 0.85rem;
    padding-left: 5px;
}

/*
|--------------------------------------------------------------------------
| CONTACT BOX (Mobile first)
|--------------------------------------------------------------------------
*/
.booking-container {
    background: #BD916F; /* Soft Brown */
    border: 1px solid #465048; /* Dark Slate Green Accent */
    padding: 40px 20px; /* Reduced padding for mobile */
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.booking-container h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.booking-container p {
    color: #465048; /* Dark Slate Green */
    margin-bottom: 30px;
}

/*
|--------------------------------------------------------------------------
| FOOTER (Mobile first)
|--------------------------------------------------------------------------
*/
.footer {
    padding: 40px 0;
    border-top: 1px solid #C0B283; /* Subtle Khaki Border */
    margin-top: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stack columns on mobile */
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-col h3 {
    margin-bottom: 5px; /* Fixed typo */
}

.copyright {
    color: #465048; /* Dark Slate Green for subdued text */
    font-size: 0.75rem;
    text-align: center;
}


/*
|--------------------------------------------------------------------------
| MEDIA QUERY: Tablet / Desktop (>= 768px)
|--------------------------------------------------------------------------
*/
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0; /* Restore full padding on desktop */
    }

    .section-title {
        font-size: 2rem;
        text-align: left;
    }

    /* Navigation */
    .nav-container {
        flex-direction: row;
        gap: 0;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    /* Hero */
    .hero {
        padding: 140px 0 100px 0;
        text-align: left;
    }

    .hero-content {
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 3.75rem; /* Increased size on desktop */
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
        max-width: none;
    }
    .hero-buttons .btn-secondary {
        margin-left: 15px;
        margin-top: 0;
    }

    /* How It Works */
    .process-steps {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
        gap: 40px;
    }
    .step-item {
        padding: 30px;
    }
    .step-number {
        font-size: 4rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    .card {
        padding: 30px;
    }

    /* Why Us Section */
    .focus-statement-wrapper {
        padding: 60px 20px;
    }
    .focus-statement-wrapper .section-title {
        font-size: 2.2rem;
    }

    .comparison-table-wrapper {
        padding: 80px 0;
    }

    /* Comparison Table */
    .comparison-table {
        grid-template-columns: 1fr 1fr; /* Side-by-side columns on desktop */
        gap: 40px;
    }

    /* Founder */
    .founder {
        text-align: left;
        padding: 30px;
    }

    /* Contact Box */
    .booking-container {
        padding: 60px;
    }
    .booking-container h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        /* Spreads the logo block and the button block out */
        justify-content: space-between;
        /* Centers them vertically */
        align-items: center;
        /* Ensure the logo/motto block is left-aligned, overriding mobile center */
        text-align: left; 
        margin-bottom: 40px;
    }
    
    /* Ensure the individual text items in the logo column are left-aligned */
    .footer-col h3, .footer-col p {
        text-align: left;
    }
    
    /* Copyright remains centered or takes up full width below */
    .copyright {
        /* Ensures copyright text is centered across the container width */
        text-align: center;
    }
}