:root {
    --bg-color: #080808;
    --text-color: #ffffff;
    --gold: #d4af37;
    --orange: #ff6b00;
    --dark-grey: #1a1a1a;
    --glow-gold: rgba(212, 175, 55, 0.5);
    --glow-orange: rgba(255, 107, 0, 0.5);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.primary-btn {
    background: linear-gradient(45deg, var(--gold), var(--orange));
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--glow-orange);
}

.primary-btn:hover {
    box-shadow: 0 0 25px var(--glow-gold);
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.secondary-btn:hover {
    background: var(--gold);
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--glow-gold);
}

.large-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--orange);
    box-shadow: 0 0 10px var(--glow-orange);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px var(--glow-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 120px 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(8, 8, 8, 1) 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.highlights {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #ccc;
}

.highlight-item i {
    color: var(--orange);
}

/* About Section */
.about {
    background: var(--dark-grey);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-list i {
    color: var(--gold);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--dark-grey);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--glow-gold);
    border-color: var(--gold);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.event-date .month {
    font-weight: 700;
    font-size: 0.9rem;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 10px;
    color: var(--gold);
}

.event-details p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

/* Social Proof */
.social-proof {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(255, 107, 0, 0.05));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonials {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    background: var(--dark-grey);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial h4 {
    color: var(--orange);
    text-align: right;
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.video-placeholder {
    height: 200px;
    background: #2a2a2a;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #666;
    border: 1px solid #333;
    transition: all 0.3s;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.video-placeholder:hover {
    border-color: var(--orange);
    box-shadow: 0 0 20px var(--glow-orange);
    color: #fff;
    transform: translateY(-5px);
}

/* Booking Section */
.booking {
    background: var(--dark-grey);
    text-align: center;
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.service-tags span {
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-weight: 700;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background: var(--dark-grey);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p i {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-color);
    box-shadow: 0 0 10px var(--glow-gold);
}

.contact-form {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 2px solid var(--orange);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand .tagline {
    color: #888;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 8, 8, 0.95);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlights {
        flex-direction: column;
        align-items: center;
    }
}
