﻿:root {
    /* Palette */
    --bg-creme: #EAE8E3;
    --text-black: #1a1a1a;    /* Slightly softer black */
    --text-grey: #4a4a4a;     /* Darker grey for better readability */
    --text-grey-light: #333;  /* Light grey for hero text */
    --text-dark: #111;        /* Very dark for contrast */
    --text-medium: #222;      /* Medium dark grey */
    --text-medium-light: #444; /* Medium light grey */
    --pure-black: #000;       /* Pure black */
    --pure-white: #fff;       /* Pure white */
    --accent-rose: #D7CBC4;
    --footer-bg: #4A403A;
    --footer-text: #f0f0f0;   /* Light grey text for footer */

    /* Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-creme);
    color: var(--text-black);
    font-family: var(--font-serif);
    line-height: 1.7;
    font-weight: 400;
    font-size: 25px;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--text-black);
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--bg-creme);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden; /* Prevent flicker */
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.6rem 5%;
}

header.scrolled .logo img {
    height: 60px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    text-transform: uppercase;
    font-size: 1.2rem;   /* Bigger navigation */
    letter-spacing: 1.5px;
    font-weight: 500;    /* Bolder navigation */
    color: var(--text-grey-light);
}

.nav-links li a:hover {
    color: var(--accent-rose);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-black);
    margin: 6px;
    transition: all 0.3s ease;
}

/* --- HERO SECTION --- */
.hero-content p {
    /* Increased size significantly: Min 1.3rem, Max 1.8rem */
    font-size: clamp(2rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--text-dark); /* Darker black for contrast */
    font-weight: 500; /* Slightly bolder */
    max-width: 700px; /* Prevents lines from getting too long and hard to read */
    margin-left: auto;
    margin-right: auto;
}

#hero {
    height: 85vh;
    background-image: url('hero.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* CHANGED: Much stronger overlay (70% white) to make text readable */
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(2px); /* Optional: slightly blurs the background image */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem); /* Bigger headline */
    margin-bottom: 1rem;
    color: var(--text-grey-light); /* Light grey for contrast */
    text-shadow: 0 0 20px rgba(255,255,255,0.8); /* White glow behind text */
}

.italic-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--text-grey-light);
}

.hero-content p {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--text-medium);
    font-weight: 500;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 2px;
    letter-spacing: 1px;
    font-size: 1.7rem;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--accent-rose);
    color: var(--text-black);
    border: 1px solid var(--accent-rose);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: var(--font-serif);
    font-style: italic;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: transparent;
    border-color: var(--text-black);
    transform: translateY(-2px);
}


/* --- GENERAL SECTIONS --- */
section {
    padding: 6rem 10%; /* More breathing room */
    max-width: 100%;
    overflow-x: hidden;
    scroll-margin-top: 140px; /* Offset for sticky header */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--text-grey);
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Give text slightly more space */
    gap: 5rem;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.69rem;
    color: var(--text-grey);
    font-style: italic;
}

/* Fixed Heart List */
.heart-list {
    margin-top: 2rem;
}

.heart-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    line-height: 1.6;
    font-size: 1.69rem; /* Larger list text */
}

.heart-list i {
    color: var(--accent-rose);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
    transform: rotate(-90deg);
    align-self: flex-start;
    margin-top: 0.8rem;
}

.heart-list span {
    flex: 1;
    text-align: left;
    color: var(--text-grey);
    font-style: italic;
}


/* Optimized Quote Box */
.quote-box {
    padding: 3rem;
    background-color: var(--pure-white);
    border: 1px solid var(--accent-rose);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(215, 203, 196, 0.2); /* Soft shadow */
}


.quote-box p {
    font-family: var(--font-serif);
    font-size: 2rem; /* Larger quote text */
    font-style: italic;
    color: var(--text-grey-light);
}

.handwritten {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent-rose);
    display: block;
    margin-top: 15px;
    line-height: 1.2;
}

/* --- SERVICES SECTION --- */
/* Service Highlight */
.service-highlight {
    background: var(--pure-white);
    padding: 2.5rem 3.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 5rem;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.service-highlight p {
    font-size: 1.65rem;
    color: var(--text-grey);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    max-width: 100%;
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h3 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

.process-header p {
    font-size: 1.5rem;
    color: var(--text-grey);
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background: var(--pure-white);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(215, 203, 196, 0.4);
    border-color: var(--accent-rose);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--accent-rose);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    font-size: 1.625rem;
    color: var(--text-grey);
    line-height: 1.7;
    font-style: italic;
}

.icon-circle {
    font-size: 2.5rem;
    color: var(--accent-rose);
    margin-bottom: 1.5rem;
}

.cta-wrapper {
    text-align: center;
}

.cta-wrapper h3 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.cta-wrapper p {
    margin-bottom: 2.5rem;
    color: var(--text-grey);
    font-size: 1.75rem;
    font-style: italic;
}

/* --- CONTACT SECTION --- */
#contact {
    padding-top: 3rem; /* Half of default 6rem */
}

/* --- CONTACT CARDS --- */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--pure-white);
    padding: 3rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid var(--bg-creme);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon-large {
    font-size: 2.5rem;
    color: var(--accent-rose);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.contact-card p {
    color: var(--text-grey);
    font-size: 1.69rem;
    word-break: break-word;
    font-style: italic;
}

.contact-card .location-detail {
    font-size: 1.2rem;
    color: var(--text-grey-light);
    margin-top: 1rem;
    opacity: 0.8;
}

/* --- LEGAL PAGE STYLES --- */
.legal-section {
    padding: 5rem 10%;
    min-height: 60vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    padding: 4rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { margin-top: 2.5rem; font-size: 1.5rem; }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.2rem; }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: var(--text-medium-light); }
.legal-content ul { list-style: disc; padding-left: 20px; }

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.footer-col h3 {
    color: var(--accent-rose);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-family: var(--font-serif);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col p {
    font-style: italic;
}

.footer-col a {
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
    font-size: 1.69rem;
}

.footer-col a:hover {
    color: var(--accent-rose);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0.8;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a:hover {
    color: var(--accent-rose);
}

/* --- MODAL POPUP --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-creme);
    margin: auto;
    padding: 3rem;
    border: 1px solid var(--accent-rose);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--text-grey);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--text-black);
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    font-style: italic;
    color: var(--text-grey);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

/* --- CONTACT FORM --- */
#contactForm {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-black);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: var(--pure-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-black);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-rose);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-group {
    background-color: rgba(215, 203, 196, 0.2);
    padding: 1rem;
    border-radius: 4px;
}

.captcha-group label {
    font-size: 1rem;
}

#captchaQuestion {
    font-weight: 700;
    color: var(--text-black);
    font-size: 1.2rem;
}

.form-status {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {

    section {
        padding: 4rem 5%;
    }

    .legal-section {
        padding: 2rem 5%;
        background-color: var(--pure-white); /* Remove side padding visual on mobile */
    }

    .legal-content {
        padding: 1rem;
        box-shadow: none;
    }

    header {
        padding: 1rem 5%;
    }

    /* Mobile Hero */
    #hero {
        height: 100vh; /* Full viewport height on mobile */
    }

    .hero-content h1 {
        font-size: 2.8rem; /* readable size */
    }

    /* Mobile Menu Overlay */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: var(--bg-creme);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        color: var(--text-black);
    }

    .nav-active {
        transform: translateX(0%);
    }

    .nav-active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    .burger {
        display: block;
    }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    /* Stacked Layouts */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        gap: 2rem;
    }

    .about-image {
        margin: 0 auto;
        max-width: 100%;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        text-align: center;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    /* Modal adjustments for mobile */
    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .modal-subtitle {
        font-size: 1.1rem;
    }

    .close {
        right: 1rem;
        top: 1rem;
        font-size: 2rem;
    }
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
