@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #c5a25f;
    --gold-dark: #a88c4f;
    --gold-glow: rgba(197, 162, 95, 0.28);
    --navy: #1f2a3d;
    --navy-soft: #2c3e50;
    --charcoal: #2c2c2c;
    --cream: #f8f5f0;
    --mist: #f3efe8;
    --line: rgba(31, 42, 61, 0.1);
    --gray: #6b7280;
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

.font-display {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Decorative background */
.deco-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.deco-bg::before,
.deco-bg::after {
    content: '';
    position: absolute;
    width: 42rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    opacity: 0.07;
    transform: rotate(-28deg);
}

.deco-bg::before { top: -8%; left: -10%; }
.deco-bg::after { top: 55%; right: -12%; }

/* Navigation */
.nav-solid {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.site-header-bar {
    min-height: 4.5rem;
    height: 4.5rem;
}

.site-brand {
    flex: 1;
    min-width: 0;
    text-decoration: none;
}

.site-brand-name {
    display: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.15;
    color: var(--navy);
    text-align: left;
}

.site-logo {
    height: 6.75rem;
    width: auto;
    transition: transform 0.3s ease;
}

.site-brand:hover .site-logo { transform: scale(1.04); }

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active { color: var(--gold-dark); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.mobile-nav {
    display: none;
}

.mobile-nav.open { display: block; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(31, 42, 61, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--navy);
    box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    transition: all 0.2s ease;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

/* Section titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Hero */
.hero-cover {
    position: relative;
    min-height: 72vh;
}

.hero-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(31, 42, 61, 0.92) 0%,
        rgba(31, 42, 61, 0.45) 45%,
        rgba(31, 42, 61, 0.15) 100%
    );
}

.hero-cover.hero-cover--home::after {
    background: linear-gradient(
        to bottom,
        rgba(31, 42, 61, 0.92) 0%,
        rgba(31, 42, 61, 0.55) 30%,
        rgba(31, 42, 61, 0.18) 55%,
        rgba(31, 42, 61, 0.04) 100%
    );
}

.hero-cover.hero-cover--home .hero-content--top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-cover.hero-cover--home .hero-content--top {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Info cards */
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(31, 42, 61, 0.08);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mist);
    color: var(--gold-dark);
    font-size: 1.25rem;
}

/* Carousel */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
    border-radius: 1rem;
}

.carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, color 0.2s ease;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #fff;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(31, 42, 61, 0.25);
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Package cards */
.package-card {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 36px rgba(31, 42, 61, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(31, 42, 61, 0.12);
}

.package-card.featured {
    border-color: var(--gold);
    box-shadow: 0 16px 44px var(--gold-glow);
}

.package-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    padding: 1.75rem;
    text-align: center;
}

.package-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1.1;
}

/* Comparison table */
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
}

.compare-table th,
.compare-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child { text-align: left; }

.compare-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }

.check-icon { color: var(--gold); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item.portrait { aspect-ratio: 3/4; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(31, 42, 61, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(10, 12, 16, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 0.75rem;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

/* About cards */
.about-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--line);
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-panel {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
}

.form-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}

.site-footer a:hover { color: var(--gold); }

.footer-logo {
    height: 7rem;
    width: auto;
    opacity: 0.95;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Instructions */
.instruction-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 8px 28px rgba(31, 42, 61, 0.05);
}

.instruction-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.instruction-img {
    max-width: 100%;
    width: 16rem;
    border-radius: 0.75rem;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(31, 42, 61, 0.1);
}

@media (min-width: 640px) {
    .instruction-card {
        padding: 1.75rem 2rem;
    }

    .instruction-img {
        width: 18rem;
    }
}

/* Page header */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    padding: 5rem 0 4rem;
}

@media (min-width: 768px) {
    .site-header-bar {
        min-height: 7rem;
        height: 8rem;
    }
}

@media (max-width: 1023px) {
    .site-brand-name {
        display: block;
    }

    .site-logo {
        height: 3.25rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 2.75rem 0 2.25rem;
    }

    .page-hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .footer-logo { height: 5.5rem; }
    .carousel-slide img { height: 18rem; }

    .hero-cover.hero-cover--home {
        min-height: 58vh;
    }

    .hero-cover.hero-cover--home .hero-content--top {
        padding-top: 0.75rem;
        padding-bottom: 1rem;
    }

    .hero-cover.hero-cover--home .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-cover.hero-cover--home .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}