/* --- Global Styles --- */
:root {
    --primary-coral: #ff5e6c;
    --light-peach: #FFEEE9;
    --dark-grey: #333333;
    --accent-pink: #fea49f;
    --white: #ffffff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark-grey);
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

/* --- Navigation Header --- */
.Header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 12vh;
    background: white;
}

.Logo { height: 70px; }

.HeaderText {
    display: flex;
    align-items: center;
    gap: 25px;
}

.HeaderText a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    transition: color 0.3s;
}

.HeaderText a:hover { color: var(--primary-coral); }
.active-link { text-decoration: underline !important; font-weight: 700; }



/* --- HOME PAGE: Hero & Services --- */
#MainImage { position: relative; width: 100vw; height: 75vh; }
#MainImage img { width: 100%; height: 100%; object-fit: cover; }
#ImageText {
    position: absolute; top: 30%; left: 8%; transform: translateY(-50%);
    color: white; font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}
#ServicesContainer { padding: 0 5% 80px 5%; background-color: #fff; }
#ServiceTitle { font-family: 'Playfair Display', serif; font-size: 3.5rem; text-align: center; margin-bottom: 50px; }
#ServicesGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { #ServicesGrid { grid-template-columns: 1fr; } }
.ServiceCard { position: relative; height: 300px; overflow: hidden; border-radius: 5px; }
.ServiceCard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ServiceOverlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease; color: white;
    font-size: 1.2rem; font-weight: 600;
}
.ServiceCard:hover img { transform: scale(1.1); }
.ServiceCard:hover .ServiceOverlay { opacity: 1; }
.SectionDivider { width: 100vw; height: 8px; background-color: var(--accent-pink); }

/* --- PACKAGES & SERVICES PAGE --- */
.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 40px;
    margin-top: 40px;
}

.package-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: var(--dark-grey);
}

.package-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* --- ABOUT PAGE --- */
.page-header-section {
    background-color: var(--light-peach);
    padding: 80px 5%;
    text-align: center;
}

.header-content { max-width: 800px; margin: 0 auto; }
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}
.page-subtitle { font-size: 1.1rem; color: #555; line-height: 1.6; }

/* About Split Section (Text + Image) */
.about-container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }

.about-split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .about-split-section { flex-direction: column; }
    .about-image { width: 100%; }
}

.about-text { flex: 1; }
.about-text p { font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 20px; }
.about-image { flex: 1; }
.about-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Values Section (3 Cards) */
.values-section { margin-bottom: 80px; }
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark-grey);
    margin-bottom: 40px;
}
.center-text { text-align: center; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-coral);
}

.value-card p { line-height: 1.6; color: #666; }

/* CTA Banner (Bottom of About Page) */
.cta-banner {
    background-color: var(--primary-coral);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 10px; }
.cta-banner p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-coral);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- CONTACT PAGE --- */
.contact-info-section { padding: 60px 5%; background-color: #fff; }
.contact-info-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.contact-card {
    flex: 1; min-width: 250px; max-width: 350px;
    background: #fff; padding: 40px 20px; text-align: center;
    border: 1px solid #eee; border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 15px; }

/* Contact Form Layout */
.ContactContainer { background-color: var(--light-peach); padding: 80px 5%; }
.ContactWrapper { max-width: 1100px; margin: 0 auto; display: flex; gap: 60px; align-items: center; }
@media (max-width: 900px) { .ContactWrapper { flex-direction: column; } .ContactImage { display: none; } }
.ContactImage { flex: 1; }
.ContactImage img { border-radius: 20px; border: 8px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.FormArea { flex: 1.5; width: 100%; }
.ContactTitle { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 30px; }
#contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { display: flex; flex-direction: column; width: 100%; }
.full-width { grid-column: span 2; width: 100%; }
label { font-size: 0.85rem; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; background: white; font-family: inherit; }
.button-wrapper { grid-column: span 2; display: flex; justify-content: center; margin-top: 20px; }
.send-button {
    background-color: var(--dark-grey); color: white; border: none;
    padding: 15px 60px; border-radius: 30px; font-weight: bold; cursor: pointer;
    transition: all 0.3s ease;
}
.send-button:hover { background-color: var(--primary-coral); transform: translateY(-2px); }

/* --- SUCCESS POPUP --- */
.success-popup {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999; justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}
.popup-content {
    background-color: white; padding: 40px; border-radius: 12px;
    text-align: center; width: 90%; max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: popupFadeIn 0.3s ease-out;
    border-top: 5px solid var(--primary-coral);
}
.popup-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
.popup-content p { font-size: 1rem; color: #555; margin-bottom: 25px; }
.popup-content button {
    background-color: var(--dark-grey); color: white; border: none;
    padding: 12px 35px; border-radius: 30px; font-weight: 600; cursor: pointer;
}
.popup-content button:hover { background-color: var(--primary-coral); }
@keyframes popupFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   MOBILE HEADER ADJUSTMENTS
   ========================================= */

@media (max-width: 900px) {
    /* 1. Make the header taller and stack items vertically */
    .Header {
        height: auto; /* Allows the box to grow to fit content */
        min-height: 12vh;
        flex-direction: column; /* Stacks Logo on top, Links on bottom */
        padding: 20px 5%;
        gap: 20px; /* Adds space between Logo and Links */
    }

    /* 2. Resize the Logo slightly for mobile */
    .Logo {
        height: 60px;
    }

    /* 3. Arrange the links nicely */
    .HeaderText {
        width: 100%;
        justify-content: center; /* Centers links horizontally */
 /* Allows links to drop to a new line if needed */
        gap: 15px; /* Reduces the gap between links so they fit better */
        text-align: center;
    }

    /* 4. Adjust font size for mobile */
    .HeaderText a {
        font-size: 0.95rem;
    }

    /* 5. Make the "Enquire Now" button stand out */
    .nav-cta {
        margin-top: 5px; /* Adds a little breathing room */
        display: inline-block;
    }
}


/* --- Mobile Navigation Adjustments (Hide Logo, Smaller Text) --- */
@media (max-width: 768px) {

    /* 1. Hide the Logo completely on small screens */
    .Logo {
        display: none;
    }

    /* 2. Center the links and reduce header height */
    .Header {
        justify-content: center;
        padding: 0 10px;
        height: 10vh;
    }

    /* 3. Adjust spacing between links */
    .HeaderText {
        gap: 15px; /* Space between words */
        width: 100%;
        justify-content: center;
    }

    /* 4. Make link text smaller */
    .HeaderText a {
        font-size: 0.85rem; /* ~13px */
    }

    /* 5. Make the CTA button smaller */
    .nav-cta {
        padding: 6px 15px;
        font-size: 0.75rem; /* ~12px */
        border-width: 1px;
    }
}