/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #050505;
    /* Fallback */
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
    /* Gold accent */
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Background System */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom for cinematic feel */
}

.bg-layer.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 10s ease-out;
    /* Slow zoom effect on active */
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: background 0.3s;
}

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.btn-book {
    border: 1px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-book:hover {
    background: white;
    color: black !important;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    position: relative;
    z-index: 2;
    /* Above background */
}

/* Glassmorphism Cards */
.glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    max-width: 600px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.content-box {
    text-align: center;
}

.content-card {
    text-align: left;
}

.right-align {
    margin-left: auto;
}

.left-align {
    margin-right: auto;
}

.center-align {
    margin: 0 auto;
    text-align: center;
}

/* Interactive Elements */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e25822;
    /* Lava orange */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #ff7043;
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid white;
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    background: white;
    color: black;
}

.amenities-list {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.tour-tags span {
    display: inline-block;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin: 0.3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Footer */
footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: black;
    color: #888;
    font-size: 0.8rem;
}

/* Packages Section */
.custom-width {
    max-width: 1200px;
    width: 90%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    /* Slightly lighter glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s, background 0.3s;
    overflow: hidden;
    /* Contain image */
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.package-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
    background-color: #222;
    /* Placeholder color */
}

.package-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    /* Align heights */
}

.package-duration {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    color: #ccc;
}

.package-best-for {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #aaa;
}

.package-price {
    font-size: 1.3rem;
    color: #e25822;
    /* Lava orange */
    font-weight: 700;
    margin-top: 1rem;
    text-align: right;
}

.package-details {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-details ul {
    list-style-type: none;
    /* Custom bullets inside */
    padding-left: 0;
}

.package-details li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.package-details li::before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .glass {
        padding: 2rem;
        width: 100%;
    }

    .nav-links {
        display: none;
        /* Add JS toggle later */
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .nav-links a {
        margin: 1rem 0;
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: block;
    }

    .right-align,
    .left-align {
        margin: 0 auto;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}