:root {
    /* Blushing Bride Palette - HIGH DEFINITION REVERT */
    --primary-rose: #B76E79;
    /* Antique Rose (Buttons/Accents) */
    --primary-merlot: #702F3B;
    /* Deep Merlot (Headings - SHARP) */
    --bg-blush: #FFF0F5;
    /* Lavender Blush (Background) */
    --text-charcoal: #2D2D2D;
    /* Dark Charcoal (Body Text - SHARP) */
    --white: #FFFFFF;

    /* Effects - HD QUALITY (No Blur) */
    --glass-bg: rgba(255, 240, 245, 0.25);
    /* Crystal clear glass */
    --card-shadow: 0 8px 25px -5px rgba(112, 47, 59, 0.1);
    --card-hover-shadow: 0 15px 40px -5px rgba(112, 47, 59, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-blush);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-merlot);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

.text-rose {
    color: var(--primary-rose);
}

.text-merlot {
    color: var(--primary-merlot);
}

/* NOTIFICATION BAR */
.top-notification-bar {
    background-color: var(--primary-merlot);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(112, 47, 59, 0.2);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 40px;
    /* Below notification bar */
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    /* Glass effect */
    border-bottom: 1px solid rgba(183, 110, 121, 0.2);
    z-index: 1001;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo: Multiply blend for perfect transparency */
.nav-brand-img {
    height: 55px;
    width: auto;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.nav-brand-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-charcoal);
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-merlot);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-merlot);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-book-nav {
    background: var(--primary-merlot);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(112, 47, 59, 0.2);
    border: 1px solid var(--primary-merlot);
}

.btn-book-nav:hover {
    background: white;
    color: var(--primary-merlot);
    transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.6rem;
    color: var(--primary-merlot);
    cursor: pointer;
}

/* HERO SECTION - HD SHARP */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/hero-main.png') no-repeat center top/cover;
    background-attachment: fixed;
    z-index: 0;
    /* HD Filters: Sharpen and Enhance */
    filter: contrast(1.15) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Minimal fade to avoid blur */
    /* Fully transparent overlay to show full image */
    background: linear-gradient(180deg, rgba(255, 240, 245, 0) 0%, rgba(255, 240, 245, 0) 80%, rgba(255, 240, 245, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-merlot);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    margin-bottom: 35px;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* TRUST BAR */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-charcoal);
    background: rgba(255, 255, 255, 0.95);
    /* Opaque white */
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(112, 47, 59, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.trust-item i {
    color: var(--primary-rose);
}

/* PACKAGES GRID */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.package-card {
    background: var(--white);
    padding: 45px 30px;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(112, 47, 59, 0.1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(112, 47, 59, 0.3);
}

.package-card.highlight {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
    border: 1px solid rgba(112, 47, 59, 0.2);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-merlot);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(112, 47, 59, 0.3);
}

.package-title {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--primary-merlot);
}

.price-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
}

.price-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-charcoal);
    /* High contrast */
    font-family: var(--font-heading);
}

.package-desc {
    font-size: 0.95rem;
    color: #666;
    /* Accessible gray */
    font-style: italic;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(112, 47, 59, 0.1);
    color: var(--text-charcoal);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-rose);
    font-size: 1.1rem;
}

.btn-book-card {
    display: inline-block;
    padding: 12px 0;
    background: var(--primary-merlot);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(112, 47, 59, 0.2);
}

.btn-book-card:hover {
    background: #59252E;
    /* Darker merlot */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(112, 47, 59, 0.3);
}

.btn-outline-rose {
    background: transparent;
    border: 1px solid var(--primary-merlot);
    color: var(--primary-merlot);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline-rose:hover {
    background: var(--primary-merlot);
    color: white;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

/* Smart Focus */
.gallery-item img[src*="package-"] {
    transform: scale(1.15);
    object-position: center 25%;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FOOTER */
footer {
    background: #FFF5F7;
    color: var(--text-charcoal);
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(112, 47, 59, 0.1);
}

.footer-socials {
    margin: 30px 0;
}

.footer-socials a {
    color: var(--primary-merlot);
    /* font-size: 1.8rem; */
    /* handled by icon */
    font-size: 30px;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2);
}

/* STICKY WHATSAPP */
.sticky-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid white;
}

/* RESPONSIVE */
.mobile-only {
    display: none;
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-blush);
        /* Solid bg */
        flex-direction: column;
        padding: 40px 0;
        border-bottom: 1px solid rgba(112, 47, 59, 0.1);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-menu.active {
        clip-path: circle(150% at 100% 0);
    }

    .hero-title {
        font-size: 3rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-only {
        display: block;
    }
}

/* ANIMATIONS & EFFECTS */

/* SHINE Effect for Buttons */
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        left: 100%;
        opacity: 0.6;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.btn-book-nav {
    position: relative;
    overflow: hidden;
}

.btn-book-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

/* FLOAT Effect for Icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.package-card i {
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

/* PULSE Effect for Sticky Button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.sticky-wa {
    animation: pulse 2s infinite;
}