/* Reset and Base Styles */
:root {
    --primary-color: #324ef5; /* Gold */
    --bg-dark: #0b0b0b;
    --bg-card: #151515;
    --text-light: #ffffff;
    --text-gray: #bbbbbb;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: #080808;
}

.gold-text {
    color: var(--primary-color);
}

.btn-gold {
    background: var(--primary-color);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
}

.btn-ticket {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    margin-right: 10px;
}

.btn-ticket:hover {
    background: rgba(217, 181, 90, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 181, 90, 0.2);
}

/* Headings */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-heading {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.98);
    padding: 10px 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px; /* INCREASED LOGO SIZE */
    width: auto;
    /* FILTER to Ensure it looks Gold/Bright */
    filter: brightness(1.2) contrast(1.1);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1558002038-1091a1661116?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(11,11,11,1));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    margin: 20px 0;
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--primary-color);
}

.card-image {
    height: 220px;
    overflow: hidden;
    background: #000;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.icon-gold {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* About & Features */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.about-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: var(--bg-card);
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 8px;
    flex: 1;
}

.stat-box i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: rgba(217, 181, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #000;
    padding: 30px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a {
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary-color);
}

/* ANIMATIONS */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .about-content, .contact-container, .footer-content { grid-template-columns: 1fr; display: block; }
    .footer-center { margin: 20px 0; text-align: center; }
    .footer-left, .socials { text-align: center; }
    .stat-box { margin-bottom: 10px; }
    .about-stats { margin-top: 30px; flex-wrap: wrap;}
    
    .nav-links { display: none; }
    .hero-btns { flex-direction: column; }
}