/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #0f172a;       /* Deep Navy / Charcoal */
    --secondary: #b45309;     /* Warm Amber Accent */
    --bg-light: #f8fafc;      /* Soft Light Grey */
    --bg-white: #ffffff;
    --text-dark: #1e293b;     /* Dark Slate Text */
    --text-muted: #64748b;    /* Slate Muted Text */
    --whatsapp-color: #25d366;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- STICKY HEADER --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

css/* Triggers automatically when the window drops below 768px wide */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column; /* Stacks the logo and links vertically */
        gap: 1rem;              /* Adds clean space between logo and buttons */
        padding: 1rem;          /* Reduces side gaps on mobile */
    }

    /* Target the container holding your navigation buttons/links */
    .nav-container div, 
    .nav-container ul, 
    .nav-links { 
        display: flex;
        flex-wrap: wrap;        /* Allows buttons to wrap onto new lines if needed */
        justify-content: center;
        gap: 10px;
    }
}

/* --- HERO SECTION (BLANK) --- */
/*.hero-section {
    height: 70vh;
    background-color: #e2e8f0; /* Temporary placeholder color */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}*/

/*.hero-placeholder-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}*/

/* --- HERO SECTION --- */
/*.hero-section {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretches and crops perfectly without distortion */
    object-position: center; /* Keeps the middle of the image focused */
} */

/* --- GLOBAL RESET (Removes default browser borders/gaps) --- */
html, body {
    margin: 0;
    padding: 0;
    border: 0;
}

/* --- HERO SECTION --- */
.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;       /* Explicitly removes any section borders */
    outline: none;      /* Removes any outline rings */
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;     /* Fixes an HTML bug that adds a tiny gap at the bottom */
    border: none;       /* Explicitly removes any image borders */
}


/* --- SECTION LAYOUTS --- */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background-color: var(--bg-light);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.section-alt .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.section-content {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
}

/* --- SPECIFIC SECTION MODIFICATIONS --- */
.subtitle {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* --- CONTACT OPTIONS --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-action {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-action:hover {
    background-color: var(--secondary);
}

/* --- STICKY WHATSAPP BUTTON --- */
.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--whatsapp-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.whatsapp-sticky svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* --- POPUP MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: var(--bg-white);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.modal-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.modal-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary);
}

.modal-form .btn-action {
    width: 100%;
}

/* --- RESPONSIVE MOBILE NAV --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .nav-container {
        justify-content: center;
    }
    .hero-section {
        height: 40vh;
    }
    section {
        padding: 4rem 1.5rem;
    }
}