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

:root {
    --bg-900: #060606;
    --bg-800: #0f0f0f;
    --accent-1: #ff3b00;
    /* fiery red */
    --accent-2: #ffcc00;
    /* warm gold */
    --muted: #ddd;
    --glass: rgba(255, 255, 255, 0.06);
}

html,
body {
    height: 100%;
    font-family: "Inter", system-ui, -apple-system, Roboto, "Segoe UI", Arial;
    color: var(--muted);
    background: var(--bg-900);
}

/* -------------------------
   Loader
   ------------------------- */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(26, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.99) 100%);
    transition: opacity .6s ease, visibility .6s ease, transform .6s ease;
}

#loader img {
    width: 420px;
    max-width: 80vw;
    animation: loaderGlow 1.6s ease-in-out infinite alternate;
}

@keyframes loaderGlow {
    from {
        filter: drop-shadow(0 0 6px #ff4500) drop-shadow(0 0 18px #ff6600);
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 14px #ff6600) drop-shadow(0 0 34px #ff3300);
        transform: scale(1.03);
    }
}

#loader.fade-out {
    transform: scale(1.12);
    opacity: 0;
    visibility: hidden;
}

#loader.hidden {
    display: none;
}

/* -------------------------
   Navigation (Aspiro)
   ------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Increased logo size further */
.nav-left .nav-logo {
    width: 110px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(255, 59, 0, 0.25));
}

.nav-center {
    display: flex;
    gap: 44px;
    list-style: none;
    margin: 0 auto;
    align-items: center;
    pointer-events: auto;
}

.nav-center li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    padding: 6px 6px;
}

.nav-center li a:hover {
    color: var(--accent-2);
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.12);
    transform: translateY(-1px);
}

/* Right side container: Button + Hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    /* space between OUR EVENTS and hamburger */
}

.nav-right .nav-btn {
    background: #fff;
    color: #000;
    padding: 9px 18px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-right .nav-btn:hover {
    background: linear-gradient(90deg, var(--accent-2), #fff);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hamburger {
        position: absolute !important;
        right: 15px !important;
        /* move hamburger */
        top: 26px !important;
    }

    #events-btn {
        margin-right: 70px !important;
        /* push button left */
    }
}

/* -------------------------
   Hero (poster + floating elements)
   ------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    /* ✅ Correct path: adjust depending on your folder structure */
    background-image: url('images/endi.jpg'); /* If CSS is inside /css folder */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    /* ✅ iPhone fix: avoid `background-attachment: fixed` */
    background-attachment: scroll;

    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* floating decorative series elements */
.series-elements img.series {
    position: absolute;
    z-index: 2;
    opacity: 0.95;
    will-change: transform, opacity;
    transition: transform 0.6s ease, opacity 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}

.series-elements img.money {
    width: 150px;
    top: 8%;
    left: 6%;
    transform: translateZ(0);
    animation: floatA 8s ease-in-out infinite;
}

.series-elements img.triangle {
    width: 120px;
    top: 14%;
    right: 8%;
    animation: floatB 9s ease-in-out infinite;
}

.series-elements img.square {
    width: 110px;
    bottom: 18%;
    left: 10%;
    animation: floatC 10s ease-in-out infinite;
}

.series-elements img.st {
    width: 180px;
    top: 30%;
    left: 40%;
    opacity: 0.15;
    filter: blur(0.4px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: drift 14s linear infinite;
}

@keyframes floatA {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-22px) rotate(6deg);
    }
}

@keyframes floatB {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-18px) rotate(-8deg);
    }
}

@keyframes floatC {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-14px) rotate(4deg);
    }
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-40px) translateX(12px);
    }
}

/* hero inner centered content */
.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
    max-width: 1100px;
    width: 100%;
}

.hero-logo {
    width: 100vw;
    max-width: 800px;
    /* large for desktop */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* On small screens, let it grow more */
@media (max-width: 480px) {
    .hero-inner {
            max-width: none;
            /* remove width cap */
            padding: 20px 5px;
            /* less padding so logo fills more space */
    }
}

.hero-title {
    font-size: clamp(28px, 6vw, 72px);
    font-weight: 900;
    color: transparent;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-title .version {
    font-size: 0.45em;
    margin-left: .4rem;
    color: var(--accent-2);
    -webkit-text-fill-color: var(--accent-2);
}

/* subtitle */
.hero-sub {
    font-size: clamp(12px, 1.3vw, 18px);
    color: #f4e8d8;
    opacity: 0.9;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* meta row */
.hero-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero-meta .date {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hero-meta .date .month {
    font-size: 0.35em;
    display: block;
    color: var(--accent-1);
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 6px;
}
/* Events started banner only */
.event-banner {
    background: linear-gradient(90deg, var(--accent-1), #ff6d29);
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 80, 0, 0.12);
}

/* CTA */
.cta-row {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-btn.primary {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: #111;
    box-shadow: 0 10px 40px rgba(255, 100, 0, 0.12);
}

/* -------------------------
   Events grid (glass cards)
   ------------------------- */
.events {
    padding: 64px 6vw 120px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.card p {
    color: #d9d9d9;
    font-size: 0.93rem;
}

/* -------------------------
   Responsive tweaks
   ------------------------- */
@media (max-width: 980px) {
    .nav {
        padding: 12px 20px;
    }

    .nav-center {
        gap: 18px;
    }

    .series-elements img.money {
        display: block;
        width: 120px;
        left: 3%;
        top: 6%;
    }

    .series-elements img.st {
        display: none;
    }

    .hero-inner {
        padding: 28px 12px;
    }

    .hero-logo {
        width: 180px;
    }
}

@media (max-width: 640px) {
    .nav-center {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-meta .date {
        font-size: 34px;
    }

    .series-elements img {
        display: none;
    }

    .cta-row {
        flex-direction: column;
        gap: 10px;
    }

    #loader img {
        width: 70vw;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .series-elements img,
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto;
    }
}

.about-section {
    background-color: #000;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 80px 20px;
    text-align: center;
}

.dept-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #ff6d63;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.presents {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.event-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.event-title span {
    color: #fff;
}

.about-text {
    max-width: 900px;
    margin: 20px auto 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer {
    background-color: #000;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 50px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
}

.footer-subtitle,
.footer-college {
    font-size: 0.9rem;
    color: #ff6d63;
    margin: 3px 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.events-section {
    background-color: #000;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card h3 {
    color: white;
    font-size: 1rem;
    padding: 10px;
}

.event-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Event Tabs Styling */
.event-tabs {
    text-align: center;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.tab-btn.active {
    background: #333;
    color: #fff;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    opacity: 1;
}

.our-events-btn {
    background: linear-gradient(90deg, #ff004c, #ff7700);
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 76, 0.6);
}

.our-events-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 76, 0.8);
}

.our-events-btn:active {
    transform: scale(0.98);
}
.events-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.events-buttons .cta-btn {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
}
.nav-btn {
  text-decoration: none; /* removes underline */
  display: inline-block; /* ensures button shape */
}
.event-card {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep same text color as before */
}

.event-card h3 {
  text-decoration: none; /* Extra safety for headings */
}

.event-card:hover {
  transform: scale(1.05); /* Keep hover effect looking nice */
}
.event-card img {
  width: 100%;
  height: auto; /* Keep natural aspect ratio */
  object-fit: contain; /* Show full image */
  display: block;
  background-color: #000; /* Optional: adds a background for letterboxing */
  border-radius: 8px; /* Keep same rounded corners */
}
.footer-credit {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
}

.footer-credit span {
    font-weight: bold;
    color: #f4b400;
    /* or match your theme accent */
}
/* Loader (Optimized for All Mobiles, Larger Image) */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    will-change: opacity;
}

#loader img {
    width: 280px;
    max-width: 75vw;
    animation: fadePulse 1.5s ease-in-out infinite alternate;
}

/* Lightweight animation */
@keyframes fadePulse {
    from {
        opacity: 0.85;
    }

    to {
        opacity: 1;
    }
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loader.hidden {
    display: none;
}

/* Bigger image on small screens but still safe */
@media (max-width: 480px) {
    #loader img {
        width: 200px;
        max-width: 70vw;
    }
}
.footer-social {
  text-align: center;
  padding: 20px 0;
}

.footer-social .social-icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: #fff; /* icon color */
  transition: color 0.3s;
}

.footer-social .social-icon:hover {
  color: #ff4500; /* color on hover */
}
/* Hamburger button */
.hamburger {
    position: fixed;
    top: 20px;
    /* adjust vertical position */
    right: 14px;
    /* adjust horizontal position */
    width: 50px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    z-index: 3000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hamburger lines */
.hamburger span {
    display: block;
    height: 5px;
    /* thicker lines */
    background-color: black;
    /* black lines */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active animation */
.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);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background: #111;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 2000;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    /* slightly bigger */
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hide hamburger on larger screens */
@media(min-width: 769px) {
    .hamburger {
        display: none;
    }
}
/* Disable selection globally */
body,
html {
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE/Edge */
}

/* Prevent dragging images */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
    /* Optional: stops right-click/hover on images */
}
/* Popup overlay */
#devtools-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Popup box */
.devtools-popup-content {
    background: #111;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
    animation: popupScale 0.3s ease;
}

.devtools-popup-content h2 {
    margin-bottom: 10px;
    color: #ff4444;
}

.devtools-popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #00ffcc;
    color: #111;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.devtools-popup-content button:hover {
    background: #00ccaa;
}

@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Apply Orbitron to the whole website */
body {
    font-family: 'Orbitron', sans-serif;
}
.cta-btn,
.cta-btn.primary {
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* Section sponsors */
.sponsors-section {
    background-color: #000;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: #fff;
    /* white title */
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsor-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.sponsor-slide {
    min-width: 300px;
    /* larger */
    margin: 0 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-slide img {
    max-width: 180px;
    /* larger logos */
    max-height: 130px;
    object-fit: contain;
    background: #111;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(255, 59, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-slide img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.5);
}

/* Arrows - improved */
.sponsor-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    /* darker circle for contrast */
    color: #fff;
    /* white arrows */
    border: none;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 32px;
    transition: all 0.3s ease;
    z-index: 20;
    /* keep above logos */
}

.sponsor-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.1);
}

#prevBtn {
    left: 15px;
    /* inside carousel, not cut off */
}

#nextBtn {
    right: 15px;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
    .sponsor-slide {
        min-width: 180px;
        margin: 0 15px;
    }

    .sponsor-slide img {
        max-width: 200px;
        max-height: 110px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .sponsor-slide {
        min-width: 160px;
        margin: 0 12px;
    }

    .sponsor-slide img {
        max-width: 130px;
        max-height: 95px;
        padding: 14px;
    }

    .sponsor-btn {
        padding: 16px;
        font-size: 26px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .sponsor-slide {
        min-width: 140px;
        margin: 0 10px;
    }

    .sponsor-slide img {
        max-width: 120px;
        max-height: 85px;
        padding: 12px;
    }

    .sponsor-btn {
        padding: 14px;
        font-size: 24px;
    }

    .section-title {
        font-size: 2rem;
    }
}
/* ================= MUSIC TREAT SECTION ================= */
.music-treat-section {
  background: rgba(0, 0, 0, 0.8);
  padding: 80px 20px;
}

.music-treat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on mobile */
  color: #fff;
}

.music-content {
  flex: 1;
  min-width: 300px;
}

.music-treat-section .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.music-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  font-family: 'Inter', sans-serif;
}

.poster-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.poster-wrapper img {
    max-width: 60%;
    /* default smaller size */
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-wrapper img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 65, 108, 0.9);
}
.music-desc {
    font-family: 'Orbitron', sans-serif;
    /* changed from Inter */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .music-treat-container {
    flex-direction: column;   /* stack text & image */
    gap: 30px;
    text-align: center;
  }

  .music-treat-section .section-title {
    font-size: 2rem;
  }

  .music-desc {
    font-size: 1rem;
    margin: 0 10px;
  }

  .poster-wrapper img {
    max-width: 85%;   /* larger on small screens */
  }
}

@media (max-width: 480px) {
  .music-treat-section {
    padding: 50px 15px;
  }

  .music-treat-section .section-title {
    font-size: 1.8rem;
  }

  .music-desc {
    font-size: 0.95rem;
  }

  .poster-wrapper img {
    max-width: 100%;   /* full width for very small screens */
  }
}
@media (max-width: 768px) {
    .music-desc {
        font-family: 'Orbitron', sans-serif;
        font-size: 1rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .music-desc {
        font-family: 'Orbitron', sans-serif;
        font-size: 0.95rem;
    }
}