/* CSS Variables for Theme */
:root {
    --bg-color: #050505; /* Deep Black */
    --bg-darker: #000000;
    --surface-color: #121212;
    --surface-hover: #1f1f1f;
    
    --text-main: #ffffff; /* White */
    --text-muted: #a0a0a0;
    
    --accent-gold: #d4af37; /* Metallic Gold */
    --accent-gold-light: #f3e5ab;
    --accent-gold-dark: #b5952f;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Utility */
.text-gold { color: var(--accent-gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.bg-darker { background-color: var(--bg-darker); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* Buttons */
.btn-primary, .btn-primary-small {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--bg-darker);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--text-main);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-main);
    color: var(--bg-darker);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    /* Placeholder gradient until background image is added */
    background: #000;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero .subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.hero .title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent-gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exp-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.exp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.exp-card p {
    color: var(--text-muted);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, var(--surface-hover));
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Package Showcase */
.package-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem;
    margin: 3rem auto 0;
    max-width: 800px;
}

.package-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.package-info .price {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.package-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
}

.package-features i {
    margin-top: 0.3rem;
}

.package-visual {
    background: linear-gradient(45deg, #121212, #1a1a1a);
    border-radius: 8px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.package-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 70%);
    animation: spin 15s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.visual-content i { margin-bottom: 1rem; }

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.addon-card {
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.addon-card:hover {
    border-color: var(--accent-gold);
    background: var(--bg-darker);
    transform: translateY(-5px);
}

.addon-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.addon-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.addon-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.addon-price {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.addon-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Gallery Carousels */
.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: var(--bg-darker);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-gold-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left { left: 10px; }
.carousel-btn.right { right: 10px; }

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 65vh;
    max-height: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
}

.gallery-item:hover .gallery-img, 
.gallery-item:hover .bg-video {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,0.4);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

.gallery-img, .bg-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--bg-darker);
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-overlay span {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0.8;
    transition: var(--transition);
}

/* Footer & Socials */
.footer {
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface-color);
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.social-btn i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.qr-container {
    display: inline-block;
    padding: 1rem;
    background: var(--surface-color);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
}

.qr-code {
    width: 150px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

.qr-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations & Responsive */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Calendar Section */
.calendar-wrapper {
    background: var(--surface-color);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0 auto;
    max-width: 900px;
}

.calendar-wrapper iframe {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .package-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .hero .title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(5,5,5,0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
    }
    
    .nav-links.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
    .hero .title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--surface-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--accent-gold);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question {
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 1.5rem;
    color: var(--text-muted);
}
