@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #D4AF37;
    --primary-light: #F1D57F;
    --secondary: #D4AF37;
    --bg-dark: #020202;
    --bg-glow: rgba(26, 18, 11, 0.8);
    --bg-card: rgba(17, 17, 17, 0.6);
    --bg-card-hover: rgba(22, 22, 22, 0.8);
    --text-main: #FFFFFF;
    --text-muted: #D1D1D1;
    --glass: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('../assets/music_bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/music_bg.png') center/cover no-repeat;
    z-index: -2;
    opacity: 0.2;
    filter: blur(100px);
    pointer-events: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    background: linear-gradient(to right, #ffffff 20%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 10px;
}

h1 {
    letter-spacing: -0.045em;
    background: linear-gradient(to right, #ffffff 35%, #EAC95B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-gradient {
    background: linear-gradient(to right, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--primary);
}

.text-green {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 0.8px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at center, rgba(30, 20, 10, 0.4) 0%, transparent 100%);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*.hero::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    background: linear-gradient(#00000000, #000000, #00000000);*/
/*    z-index: 2;*/
/*}*/

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.25;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 70px !important;
}

.hero-trophy {
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 80vh;
    max-height: 700px;
    z-index: 4;
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    transition: var(--transition);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
        filter: drop-shadow(0 0 70px rgba(212, 175, 55, 0.5));
    }
}

@media (max-width: 1400px) {
    .hero-trophy {
        height: 60vh;
        right: 0;
        opacity: 0.8;
    }
}

@media (max-width: 1100px) {
    .hero-trophy {
        height: 50vh;
        right: -2%;
        opacity: 0.5;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .hero-trophy {
        height: 35vh;
        right: 50%;
        transform: translateX(50%);
        bottom: 50px;
        opacity: 0.2;
        z-index: 1;
    }
}




/* Hero Slider Styles */
.hero-slider-container {
    width: 100%;
    padding-bottom:60px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/*.hero-slider-container::before,*/
/*.hero-slider-container::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    width: 200px;*/
/*    height: 100%;*/
/*    z-index: 10;*/
/*    pointer-events: none;*/
/*}*/

/*.hero-slider-container::before {*/
/*    left: 0;*/
/*    background: linear-gradient(to right, var(--bg-dark), transparent);*/
/*}*/

/*.hero-slider-container::after {*/
/*    right: 0;*/
/*    background: linear-gradient(to left, var(--bg-dark), transparent);*/
/*}*/

.heroSwiper {
    padding: 20px 0;
}

.heroSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.slider-img-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    background: #000;
}

.slider-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0.5;
    transition: var(--transition);
}

.slider-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}

.swiper-slide-active .slider-img-wrap {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}



.swiper-slide:hover .slider-img-wrap::after {
    opacity: 0.2;
}

@media (max-width: 768px) {
    
    .hero-slider-container {
        padding: 40px 0;
    }
}






.page-header {
    padding: 180px 0 80px;
    background: radial-gradient(circle at center, rgba(30, 25, 10, 0.4), transparent);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-title {
    font-size: 56px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F1D57F 50%, #D4AF37 100%);
    color: #000000;
    padding: 8px 8px 8px 15px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F1D57F 0%, #ffffff 50%, #F1D57F 100%);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}


.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 8px 8px 8px 15px;
    gap: 20px;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: rotate(-45deg);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.section-header {
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 0.8px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card .btn {
    border-radius: 8px;
    width: 100%;
    margin-top: 25px;
}

.feature-card .btn-icon {
    display: none;
}

.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}

.phase-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 0.8px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.phase-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
}

.phase-title {
    color: #fff;
    font-size: 24px;
    margin: 15px 0 10px;
}

.team-card {
    background: var(--bg-card);
    border: 0.8px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-bottom: 0.8px solid var(--glass-border);
    background: #000;
}

.team-info {
    padding: 25px 20px;
}

.team-role {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-name {
    font-size: 20px;
    color: #fff;
}

.partners-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px 20px;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.partner-card:hover::before {
    width: 200%;
    height: 200%;
}

.partner-logo {
    height: 60px;
    max-width: 140px;
    object-fit: contain;
    transition: var(--transition);
    z-index: 1;
    filter: brightness(0.8) grayscale(1);
}

.partner-card:hover .partner-logo {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

.partner-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    z-index: 1;
}

.partner-card:hover .partner-name {
    color: var(--primary);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 0.8px solid var(--glass-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: #050505;
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    text-align: center;
    background: rgba(2, 2, 2, 0.8);
    backdrop-filter: blur(10px);
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
}

@media(max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-tags {
        justify-content: center;
    }
}