
:root {
    --primary: #FF6D00;
    --secondary: #8C52FF;
    --accent: #FFD166;
    --dark: #1D1D1D;
    --light: #FFFAEB;
    --success: #06D6A0;
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .ticket-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(29, 29, 29, 0.98);
        z-index: 101;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 102;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 180px;
    }
    
    .ticket-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ticket-card {
        height: 380px;
    }
    
    .hero-bg-image {
        background-position: 70% center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    
    .gallery-item:nth-child(4n) {
        grid-column: auto;
    }
    
    .gallery-item:nth-child(8n) {
        grid-row: auto;
    }
    
    .ticket-card {
        height: 350px;
    }
    
    .ticket-image {
        height: 150px;
    }
}/* GLOBAL STYLES */
:root {
    --primary: #FF6D00;
    --secondary: #8C52FF;
    --accent: #FFD166;
    --dark: #1D1D1D;
    --light: #FFFAEB;
    --success: #06D6A0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: var(--light);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:before {
    background: var(--light);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--light);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
}

/* Pattern Background */
.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.5' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* African patterns */
.african-pattern-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 20px 20px;
    background-image: 
        radial-gradient(var(--accent) 2px, transparent 2px),
        radial-gradient(var(--primary) 2px, transparent 2px);
    background-position: 0 0, 10px 10px;
    opacity: 0.05;
    z-index: -1;
}

.african-pattern-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(135deg, var(--primary) 25%, transparent 25%), 
                      linear-gradient(225deg, var(--primary) 25%, transparent 25%), 
                      linear-gradient(45deg, var(--primary) 25%, transparent 25%), 
                      linear-gradient(315deg, var(--primary) 25%, var(--dark) 25%);
    background-position: 10px 0, 10px 0, 0 0, 0 0;
    background-size: 20px 20px;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -1;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(29, 29, 29, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.logo .accent {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 102;
    width: 32px;
    height: 32px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--light);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(29, 29, 29, 0.98);
        z-index: 101;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/1080'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 29, 29, 0.8), rgba(29, 29, 29, 0.6));
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    color: transparent;
    opacity: 0;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0;
}

.hero-btn {
    transform: translateY(30px);
    opacity: 0;
}

/* Floating elements */
.floating-element {
    position: absolute;
    z-index: 2;
    opacity: 0;
}

.drum {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 15%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="30" r="25" fill="%23FFD166"/><rect x="25" y="30" width="50" height="50" fill="%23FF6D00" rx="5"/><line x1="25" y1="40" x2="75" y2="40" stroke="%23FFFAEB" stroke-width="2"/><line x1="25" y1="50" x2="75" y2="50" stroke="%23FFFAEB" stroke-width="2"/><line x1="25" y1="60" x2="75" y2="60" stroke="%23FFFAEB" stroke-width="2"/><line x1="25" y1="70" x2="75" y2="70" stroke="%23FFFAEB" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.dancer {
    width: 100px;
    height: 150px;
    bottom: 10%;
    right: 15%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 150" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="30" r="20" fill="%23FF6D00"/><line x1="50" y1="50" x2="50" y2="100" stroke="%23FF6D00" stroke-width="5"/><line x1="50" y1="70" x2="80" y2="50" stroke="%23FF6D00" stroke-width="5"/><line x1="50" y1="70" x2="20" y2="50" stroke="%23FF6D00" stroke-width="5"/><line x1="50" y1="100" x2="80" y2="130" stroke="%23FF6D00" stroke-width="5"/><line x1="50" y1="100" x2="20" y2="130" stroke="%23FF6D00" stroke-width="5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.shekere {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 10%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,10 C60,10 70,15 75,30 C80,45 80,70 70,80 C60,90 40,90 30,80 C20,70 20,45 25,30 C30,15 40,10 50,10 Z" fill="%238C52FF"/><circle cx="30" cy="40" r="3" fill="%23FFD166"/><circle cx="35" cy="50" r="3" fill="%23FFD166"/><circle cx="40" cy="60" r="3" fill="%23FFD166"/><circle cx="50" cy="70" r="3" fill="%23FFD166"/><circle cx="60" cy="60" r="3" fill="%23FFD166"/><circle cx="65" cy="50" r="3" fill="%23FFD166"/><circle cx="70" cy="40" r="3" fill="%23FFD166"/><rect x="45" y="0" width="10" height="15" fill="%23FF6D00"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.speaker {
    width: 50px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 130" xmlns="http://www.w3.org/2000/svg"><rect x="10" y="10" width="80" height="110" rx="5" fill="%231D1D1D" stroke="%23FF6D00" stroke-width="3"/><circle cx="50" cy="40" r="25" fill="%238C52FF"/><circle cx="50" cy="40" r="10" fill="%231D1D1D"/><circle cx="50" cy="90" r="20" fill="%238C52FF"/><circle cx="50" cy="90" r="8" fill="%231D1D1D"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ABOUT SECTION */
.about {
    background: var(--dark);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-text {
    opacity: 0;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-icon {
    position: absolute;
    opacity: 0;
}

.icon-djembe {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 120" xmlns="http://www.w3.org/2000/svg"><path d="M30,20 C30,10 70,10 70,20 L70,80 C70,100 30,100 30,80 Z" fill="%23FF6D00"/><path d="M30,20 C30,30 70,30 70,20" fill="none" stroke="%23FFD166" stroke-width="2"/><path d="M30,80 C30,90 70,90 70,80" fill="none" stroke="%23FFD166" stroke-width="2"/><rect x="45" y="0" width="10" height="20" fill="%238C52FF"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-kora {
    top: 60%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%238C52FF"/><circle cx="50" cy="50" r="35" fill="%231D1D1D"/><circle cx="50" cy="50" r="10" fill="%23FFD166"/><line x1="50" y1="10" x2="50" y2="90" stroke="%23FF6D00" stroke-width="3"/><line x1="10" y1="50" x2="90" y2="50" stroke="%23FF6D00" stroke-width="3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-headphone {
    bottom: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="none" stroke="%23FFD166" stroke-width="5"/><path d="M20,50 L20,70 C20,75 25,80 30,80 L35,80 L35,60 L30,60 C25,60 20,55 20,50 Z" fill="%23FF6D00"/><path d="M80,50 L80,70 C80,75 75,80 70,80 L65,80 L65,60 L70,60 C75,60 80,55 80,50 Z" fill="%23FF6D00"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* EVENTS SECTION */
.events {
    background: #232323;
    position: relative;
}

.events-container {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-content {
    padding: 20px;
}

.event-date {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.event-location {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* GALLERY SECTION */
.gallery {
    background: var(--dark);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:nth-child(4n) {
    grid-column: span 2;
}

.gallery-item:nth-child(8n) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* MUSIC PLAYER SECTION */
.music-player {
    background: #232323;
    position: relative;
}

.music-mix-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.music-note {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M30,5 L30,35 C30,40 20,45 15,40 C10,35 15,25 20,25 C23,25 26,26 30,30" fill="none" stroke="%23FF6D00" stroke-width="3"/><circle cx="30" cy="5" r="5" fill="%23FFD166"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
}

/* Mix Cards */
.mix-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.mix-card {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.2);
}

.mix-flyer {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.mix-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mix-card:hover .mix-flyer img {
    transform: scale(1.05);
}

.mix-content {
    padding: 25px;
    text-align: center;
}

.mix-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.dj-name {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 300;
}

.mix-btn {
    background: var(--primary);
    color: var(--light);
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mix-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.05);
}

.mix-btn i {
    font-size: 16px;
}

/* PARTNERS SECTION */
.partners {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.partners-wrapper {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: 20px;
}

.partner-card {
    flex: 0 0 250px;
    background: rgba(40, 40, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
    border-color: var(--primary);
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

.partner-name {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 16px;
}

/* Infinite scroll animation */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-carousel:hover .partners-wrapper {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-card {
        flex: 0 0 200px;
        padding: 20px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        flex: 0 0 170px;
    }
    
    .partners-wrapper {
        animation-duration: 25s;
    }
}
/* TICKETS SECTION */
.tickets {
    background: #232323;
    position: relative;
    text-align: center;
}

.tickets-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-cta {
    margin-bottom: 40px;
    opacity: 0;
}

/* Ticket Card Styles */
.ticket-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    perspective: 1000px;
}

.ticket-card {
    height: 400px;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.ticket-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ticket-card:hover .ticket-card-inner {
    transform: rotateY(180deg);
}

.ticket-card-front, .ticket-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

/* Glassmorphism Effect */
.ticket-card-front, .ticket-card-back {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ticket-card-front {
    display: flex;
    flex-direction: column;
}

.ticket-card-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: rgba(255, 109, 0, 0.2);
}

.ticket-image {
    height: 200px;
    overflow: hidden;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ticket-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.ticket-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.ticket-date, .ticket-venue, .ticket-price {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.ticket-date:before, .ticket-venue:before, .ticket-price:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
}

.ticket-date:before {
    content: "\f133"; /* Calendar icon */
}

.ticket-venue:before {
    content: "\f3c5"; /* Map marker icon */
}

.ticket-price:before {
    content: "\f155"; /* Dollar sign icon */
}

.ticket-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ticket-back-content h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.ticket-back-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-ticket {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 25px;
}

.btn-ticket:before {
    background: var(--light);
}

/* FOOTER */
footer {
    background: #1a1a1a;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.social-icon i {
    font-size: 18px;
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(29, 29, 29, 0.98);
        z-index: 101;
        transition: all 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 102;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 180px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
    
    .gallery-item:nth-child(4n) {
        grid-column: auto;
    }
    
    .gallery-item:nth-child(8n) {
        grid-row: auto;
    }
    
    .ticket-form {
        padding: 20px;
    }
}