/* ===== VARIABLES ===== */
:root {
    --black: #000000;
    --brand-green: #4caf50;
    --brand-green-dark: #388e3c;
    --brand-green-light: #81c784;
    --text-white: #ffffff;
    --vh: 1vh; /* Custom viewport height variable for mobile browsers */
    --text-light: #f5f5f5;
    --text-gray: #aaaaaa;
    --background-dark: #121212;
    --background-darker: #0a0a0a;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#gallery .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--brand-green);
}

.btn {
    display: inline-block;
    background-color: var(--brand-green);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--brand-green);
}

.btn:hover {
    background-color: transparent;
    color: var(--brand-green);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 20px;
    background-color: var(--brand-green);
    color: var(--text-white);
    display: inline-block;
    transition: var(--transition);
    border: 1px solid var(--brand-green);
}

.btn-small:hover {
    background-color: transparent;
    color: var(--brand-green);
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: block;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5%;
}

.logo a {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-white);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-white);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh; /* Fallback */
    height: calc(var(--vh, 1vh) * 100);
    background-color: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto; /* Allow scrolling for small screens */
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 0; /* Increased padding for better touch targets */
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--brand-green);
    background-color: rgba(255, 255, 255, 0.05);
}

.social-icons {
    display: flex;
    margin-top: 40px;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a {
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:hover::before {
    transform: translateY(0);
}

.social-icons a:hover i {
    transform: scale(1.2);
}

/* Social media brand colors in mobile menu */
.social-icons a:nth-child(1)::before {
    background: #C13584; /* Instagram */
}

.social-icons a:nth-child(2)::before {
    background: #3b5998; /* Facebook */
}

.social-icons a:nth-child(3)::before {
    background: #FF0000; /* YouTube */
}

.social-icons a:nth-child(4)::before {
    background: #1DB954; /* Spotify */
}

.social-icons a:nth-child(5)::before {
    background: #000000; /* TikTok */
}

/* ===== HERO SECTION ===== */
#hero {
    height: 100vh; /* Fallback */
    height: calc(var(--vh, 1vh) * 100);
    position: relative;
    overflow: hidden;
    background-color: var(--black);
}

/* Grid background with dots */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: transparent;
}

/* Grid dots pattern created with radial-gradient */
.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: radial-gradient(circle, rgba(76, 175, 80, 0.3) 1px, transparent 1px);
    z-index: 0;
    animation: gridMove 8s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

/* Hero title */
.hero-title {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
    opacity: 0;
    animation: fadeInDown 1s forwards 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Hide on desktop */
    display: none;
}

.hero-title h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.7);
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #4caf50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-white);
    opacity: 0.8;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    font-weight: 300;
}

.hero-subtitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0), rgba(76, 175, 80, 0.8), rgba(76, 175, 80, 0));
    animation: widthPulse 2s infinite;
}

@keyframes widthPulse {
    0%, 100% { width: 40px; opacity: 0.5; }
    50% { width: 80px; opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background text */
.background-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 20vw;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.07); /* More subtle on desktop */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

/* ===== DESKTOP HERO SECTION STYLES ===== */
.desktop-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 3;
}

/* Hide desktop hero on mobile */
@media screen and (max-width: 768px) {
    .desktop-hero-container {
        display: none;
    }
}

.desktop-hero-left {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    text-align: center;
}

.desktop-hero-name {
    margin-bottom: 30px;
    text-align: center;
}

.full-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-white);
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s forwards 0.3s;
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
}

.artist-name {
    font-family: 'Anton', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
    margin-top: 5px;
    background: linear-gradient(90deg, #ffffff, #4caf50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s forwards 0.5s, shimmer 3s infinite 1.3s;
    background-size: 200% auto;
    text-align: center;
    width: 100%;
}

.desktop-hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.7s;
    justify-content: center;
    width: 100%;
}

.hero-btn {
    padding: 15px 25px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn i {
    font-size: 1.2rem;
}

.listen-btn {
    background-color: var(--brand-green);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.gallery-btn {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--brand-green);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.listen-btn:hover {
    background-color: var(--text-white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.gallery-btn:hover {
    background-color: rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.desktop-social-icons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.9s;
    justify-content: center;
    width: 100%;
}

.desktop-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.desktop-social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.desktop-social-icons a:hover {
    transform: translateY(-5px);
}

.desktop-social-icons a:hover::before {
    transform: translateY(0);
}

.desktop-social-icons a:nth-child(1)::before {
    background: #C13584; /* Instagram */
}

.desktop-social-icons a:nth-child(2)::before {
    background: #3b5998; /* Facebook */
}

.desktop-social-icons a:nth-child(3)::before {
    background: #FF0000; /* YouTube */
}

.desktop-social-icons a:nth-child(4)::before {
    background: #1DB954; /* Spotify */
}

.desktop-social-icons a:nth-child(5)::before {
    background: #000000; /* TikTok */
}

.desktop-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.desktop-hero-image {
    width: 75%;
    height: 70%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlideIn 1s forwards 0.7s;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.desktop-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.5s ease;
}

.desktop-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.desktop-hero-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    height: 20px;
    filter: blur(10px);
    z-index: -1;
    animation: glowPulse 3s infinite alternate;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1200px) {
    .desktop-hero-left {
        padding: 0 2%;
    }
    
    .artist-name {
        font-size: 5rem;
    }
    
    .full-name {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .desktop-hero-image {
        width: 90%;
    }
    
    .desktop-hero-name {
        margin-bottom: 25px;
    }
    
    .desktop-hero-buttons {
        margin-top: 25px;
    }
    
    .desktop-social-icons {
        margin-top: 35px;
    }
}

/* Hero background image - Hide on desktop */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero7.png');
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: none;
}

/* Only show hero background on mobile */
@media screen and (max-width: 768px) {
    .hero-bg {
        display: none; /* Keep hidden as we now use the mobile hero title */
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Floating Strip Label */
.floating-strip {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(76, 175, 80, 0.9);
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.strip-content {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: stripScroll 30s linear infinite;
}

.strip-item {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    color: #000;
    letter-spacing: 1px;
    padding: 0 10px;
    text-transform: uppercase;
}

.strip-divider {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    margin: 0 5px;
}

@keyframes stripScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Floating strip hover effect */
.floating-strip:hover .strip-content {
    animation-play-state: paused;
}

/* Glowing effect on the strip */
.floating-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(76, 175, 80, 0) 100%);
    animation: stripGlow 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes stripGlow {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

/* Pulse effect on click */
.floating-strip.pulse {
    animation: stripPulse 0.5s ease-out;
}

@keyframes stripPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
}

.nav-item {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.split-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    flex-grow: 1;
}

.name-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}

.name-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.name-text {
    font-size: 10rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -10px;
    line-height: 0.8;
    mix-blend-mode: difference;
}

.artist-info {
    margin: 0 auto;
    padding: 0 20%;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.artist-description {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.journey-banner-container {
    position: relative;
    width: 100%;
    overflow: visible;
    margin-bottom: -30px;
}

.journey-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    transform: perspective(500px) rotateX(5deg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.journey-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.journey-text {
    font-size: 1rem;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Custom cursor effect */
.cursor-dot {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: rgba(76, 175, 80, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: screen;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.3s;
    mix-blend-mode: exclusion;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 1s ease;
}

.ripple {
    position: absolute;
    border: 2px solid rgba(76, 175, 80, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 1.5s ease-out forwards;
}

.particle {
    position: absolute;
    background-color: rgba(76, 175, 80, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
        border-width: 5px;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-width: 1px;
    }
}

/* Media queries for responsiveness */
@media screen and (max-width: 1200px) {
    .name-text {
        font-size: 8rem;
        letter-spacing: -8px;
    }
}

@media screen and (max-width: 768px) {
    /* Header responsive styles */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Hero section responsive styles */
    .top-nav {
        padding: 0 20px;
    }
    
    .name-text {
        font-size: 6rem;
        letter-spacing: -5px;
    }
    
    .artist-info {
        padding: 0 10%;
    }
    
    .artist-description {
        font-size: 0.8rem;
    }
    
    /* Floating strip responsive styles */
    .floating-strip {
        height: 35px;
        bottom: 20px;
    }
    
    .strip-item {
        font-size: 0.9rem;
    }
    
    /* Adjust MADUWA background text position for mobile */
    .background-text {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: auto;
        font-size: 24vw;
        color: rgba(255, 255, 255, 1); /* Full opacity on mobile */
        text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
        animation: textPulse 3s ease-in-out infinite alternate;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: absolute;
        z-index: 1;
    }
    
    /* Enhanced glitch effect when triggered by JS */
    .background-text.glitch-trigger {
        animation: none;
        text-shadow: 
            -2px 0 rgba(255, 0, 0, 0.7),
            2px 0 rgba(0, 255, 255, 0.7);
        transform: translate(-50%, -50%) scale(1.2);
        transition: transform 0.1s;
        top: 50%;
        left: 50%;
    }
    
    .background-text.glitch-trigger::before,
    .background-text.glitch-trigger::after {
        opacity: 1;
    }
    
    /* Glitch effect */
    .background-text::before,
    .background-text::after {
        content: 'MADUWA';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Anton', sans-serif;
        font-size: 20vw;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: -0.02em;
    }
    
    .background-text::before {
        color: rgba(255, 0, 0, 0.5);
        animation: glitchText1 6s infinite;
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(-0.5%, 0);
    }
    
    .background-text::after {
        color: rgba(0, 255, 255, 0.5);
        animation: glitchText2 4s infinite;
        clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
        transform: translate(0.5%, 0);
    }
    
    @keyframes glitchText1 {
        0%, 89%, 100% { 
            transform: translate(0, 0) skew(0deg); 
            opacity: 0;
        }
        90%, 91% { 
            transform: translate(-5px, 3px) skew(2deg); 
            opacity: 0.7;
        }
        92%, 93% { 
            transform: translate(3px, -2px) skew(-1deg); 
            opacity: 0.5;
        }
        94%, 95% { 
            transform: translate(-2px, 1px) skew(1deg); 
            opacity: 0.7;
        }
        96%, 98% { 
            transform: translate(1px, -1px) skew(-1deg); 
            opacity: 0.5;
        }
    }
    
    @keyframes glitchText2 {
        0%, 89%, 100% { 
            transform: translate(0, 0) skew(0deg); 
            opacity: 0;
        }
        90%, 91% { 
            transform: translate(5px, -3px) skew(-2deg); 
            opacity: 0.7;
        }
        92%, 93% { 
            transform: translate(-3px, 2px) skew(1deg); 
            opacity: 0.5;
        }
        94%, 95% { 
            transform: translate(2px, -1px) skew(-1deg); 
            opacity: 0.7;
        }
        96%, 98% { 
            transform: translate(-1px, 1px) skew(1deg); 
            opacity: 0.5;
        }
    }
    
    @keyframes textPulse {
        0% {
            opacity: 0.85;
            transform: translate(-50%, -50%) scale(0.97);
            text-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
        }
        100% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.03);
            text-shadow: 0 0 25px rgba(76, 175, 80, 0.9);
        }
    }
    
    /* Hide hero image on mobile */
    .hero-bg {
        display: none;
    }
    
    /* Style hero title for mobile - show only on mobile */
    .hero-title {
        display: flex;
        position: absolute;
        top: 50%;
        width: 100%;
        left: 0;
        transform: translateY(-50%);
        opacity: 1;
        z-index: 5; /* Ensure it's above other elements */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-full-name {
        font-family: 'Poppins', sans-serif;
        font-size: 1.6rem;
        font-weight: 600;
        letter-spacing: 3px;
        color: var(--text-white);
        text-align: center;
        margin-bottom: 5px;
        opacity: 0;
        transform: translateY(-20px);
        animation: fadeInDown 0.6s forwards 0.2s;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        width: 100%;
    }
    
    .mobile-artist-name {
        font-family: 'Anton', sans-serif;
        font-size: 3.2rem;
        letter-spacing: -1px;
        text-align: center;
        margin-bottom: 15px;
        background: linear-gradient(90deg, #ffffff, #4caf50, #ffffff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: fadeInDown 0.8s forwards 0.4s, shimmer 2s infinite 1.2s;
        opacity: 0;
        transform: translateY(-20px);
        background-size: 200% auto;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        font-weight: 700;
        width: 100%;
        padding: 0 10px;
    }
    
    @keyframes shimmer {
        0% { background-position: -100% center; }
        100% { background-position: 200% center; }
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        letter-spacing: 3px;
        line-height: 1.5;
        text-align: center;
        padding: 10px 18px;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 25px;
        animation: fadeInUp 0.8s forwards 0.6s, pulseFade 2s infinite 1.4s alternate;
        opacity: 0;
        transform: translateY(20px);
        width: auto;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        position: relative;
        z-index: 6;
        border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .mobile-social-icons {
        margin-top: 125px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        opacity: 0;
        animation: fadeIn 0.8s forwards 0.8s;
        width: 100%;
    }
    
    .mobile-social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--text-white);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-social-icons a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: -1;
    }
    
    .mobile-social-icons a:hover, .mobile-social-icons a:active {
        transform: translateY(-3px);
    }
    
    .mobile-social-icons a:hover::before, .mobile-social-icons a:active::before {
        transform: translateY(0);
    }
    
    .mobile-social-icons a:nth-child(1)::before {
        background: #C13584; /* Instagram */
    }
    
    .mobile-social-icons a:nth-child(2)::before {
        background: #3b5998; /* Facebook */
    }
    
    .mobile-social-icons a:nth-child(3)::before {
        background: #FF0000; /* YouTube */
    }
    
    .mobile-social-icons a:nth-child(4)::before {
        background: #1DB954; /* Spotify */
    }
    
    .mobile-social-icons a:nth-child(5)::before {
        background: #000000; /* TikTok */
    }
    
    /* Scroll Indicator for Mobile */
    .scroll-indicator {
        position: absolute;
        bottom: -300px;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        animation: fadeIn 0.8s forwards 1.2s;
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .scroll-mouse {
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        border-radius: 15px;
        position: relative;
        margin-bottom: 10px;
    }
    
    .scroll-wheel {
        width: 4px;
        height: 8px;
        background-color: var(--brand-green);
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scrollWheel 2s infinite;
    }
    
    .scroll-arrows {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .scroll-arrows span {
        display: block;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        border-right: 2px solid rgba(255, 255, 255, 0.7);
        transform: rotate(45deg);
        animation: arrowBlink 2s infinite;
    }
    
    .scroll-arrows span:nth-child(1) {
        animation-delay: 0s;
    }
    
    .scroll-arrows span:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    @keyframes scrollWheel {
        0% {
            top: 8px;
            opacity: 1;
        }
        50% {
            top: 30px;
            opacity: 0.5;
        }
        100% {
            top: 8px;
            opacity: 1;
        }
    }
    
    @keyframes arrowBlink {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 0.8;
            transform: translateY(0);
        }
    }
    
    @keyframes pulseFade {
        0% { 
            opacity: 0.7; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            border-color: rgba(76, 175, 80, 0.3);
        }
        100% { 
            opacity: 1;
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
            border-color: rgba(76, 175, 80, 0.5);
        }
    }
}

@media screen and (max-width: 480px) {
    .top-nav {
        padding: 0 10px;
    }
    
    .nav-item {
        font-size: 0.7rem;
    }
    
    .name-text {
        font-size: 4rem;
        letter-spacing: -3px;
    }
    
    .artist-description {
        font-size: 0.75rem;
    }
    
    .journey-text {
        font-size: 0.8rem;
    }
    
    /* Further adjust MADUWA background text position for smaller screens */
    .background-text {
        top: 50%;
        transform: translateY(-50%);
        font-size: 24vw;
        height: auto;
    }
    
    /* Ensure hero title remains centered on small screens */
    .hero-title {
        top: 38%;
        transform: translateY(-50%);
    }
    
    .hero-title h1 {
        font-size: 2.4rem;
        margin-bottom: 12px;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
        padding: 12px 20px;
    }
    
    /* Further decrease hero image size on smaller screens */
    .hero-bg {
        width: 100%;
        height: 85%;
    }
    
    /* About section mobile styles */
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .achievement-showcase {
        gap: 30px;
    }
    
    .achievement-item {
        width: 90%;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 20px;
    }
    
    .achievement-label {
        font-size: 0.8rem;
    }
    
    .about-content {
        padding: 60px 0;
    }
    
    /* Album section mobile styles */
    .album-showcase {
        gap: 30px;
    }
    
    .album-row {
        gap: 20px;
    }
    
    .album-item {
        flex: 0 0 100%;
        max-width: 260px;
    }
    
    .album-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .album-play-btn i {
        font-size: 1.2rem;
    }
    
    .album-info h3 {
        font-size: 1rem;
    }
    
    .album-info p {
        font-size: 0.8rem;
    }
}

/* Extra large screens */
@media screen and (min-width: 1440px) {
    .name-text {
        font-size: 12rem;
        letter-spacing: -12px;
    }
    
    .artist-description {
        font-size: 1rem;
        max-width: 1000px;
    }
    
    .journey-text {
        font-size: 1.2rem;
    }
}

/* ===== ABOUT SECTION ===== */
#about {
    position: relative;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    background-color: var(--background-darker);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(76, 175, 80, 0.03) 0px,
        rgba(76, 175, 80, 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding: 50px 0;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
    animation: float 6s ease-in-out infinite;
}

.about-image-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.4) 0%, rgba(76, 175, 80, 0) 70%);
    border-radius: 50%;
    filter: blur(8px);
    z-index: 1;
    animation: glowPulse 6s ease-in-out infinite;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--brand-green);
}

.about-title .highlight {
    color: var(--brand-green);
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.about-text p:nth-child(1) {
    animation-delay: 0.2s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.4s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.6s;
}

.achievement-showcase {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.8s;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-5px);
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.7);
}

.achievement-item:hover .meter-fill {
    animation-play-state: running;
    background-size: 150% 100%;
}

.achievement-item:hover .achievement-label::after {
    width: 60px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    animation: pulseIcon 2s infinite alternate;
    position: relative;
    overflow: hidden;
}

.achievement-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent 30%);
    animation: rotateGlow 4s linear infinite;
}

.achievement-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    border-radius: 50%;
    z-index: -1;
}

.achievement-icon i {
    font-size: 24px;
    color: white;
}

.achievement-meter {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.meter-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--brand-green-dark), 
        var(--brand-green), 
        var(--brand-green-light), 
        var(--brand-green), 
        var(--brand-green-dark)
    );
    background-size: 200% 100%;
    width: 0;
    border-radius: 4px;
    animation: 
        fillMeter 1.5s forwards 1s,
        shimmer 3s infinite linear 2.5s;
}

.achievement-item:nth-child(1) .meter-fill {
    animation-delay: 1s;
}

.achievement-item:nth-child(2) .meter-fill {
    animation-delay: 1.3s;
}

.achievement-item:nth-child(3) .meter-fill {
    animation-delay: 1.6s;
}

.achievement-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-white);
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.achievement-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--brand-green);
    transition: width 0.3s ease;
    animation: expandLine 0.5s forwards 2s;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    }
}

@keyframes fillMeter {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 40px;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.achievement-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--brand-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 5px var(--brand-green-light);
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LATEST SONG SECTION ===== */
.song-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.song-artwork {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.song-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.song-details p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.music-player {
    margin-bottom: 20px;
}

.music-player audio {
    width: 100%;
    height: 50px;
}

.streaming-links {
    display: flex;
    gap: 20px;
}

.streaming-links a {
    font-size: 1.8rem;
    color: var(--text-gray);
}

.streaming-links a:hover {
    color: var(--brand-green);
}

/* ===== ALBUM SECTION ===== */
#album {
    background-color: var(--background-darker);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.album-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 0;
}

#album .container {
    position: relative;
    z-index: 1;
}

#album .section-title {
    margin-bottom: 80px;
    color: white;
    font-family: 'Anton', sans-serif;
    letter-spacing: 3px;
}

.album-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.album-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.album-item {
    flex: 1;
    max-width: 280px;
    transition: all 0.4s ease;
}

.album-item:hover {
    transform: translateY(-15px);
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-item:hover .album-cover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
}

.album-item:hover .album-play-btn {
    transform: scale(1);
}

.album-play-btn i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.album-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: albumRipple 0.6s ease-out;
}

@keyframes albumRipple {
    to {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.album-info {
    margin-top: 15px;
    text-align: center;
}

.album-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.album-info p {
    color: var(--brand-green);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Creative Animated Gallery Styles */
#gallery {
    padding: 50px 5%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#gallery .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.gallery-wrapper {
    width: 100%;
    margin: 0;
    padding: 20px;
    background-color: var(--background-darker);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.creative-gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    width: 100%;
    background-color: var(--background-darker);
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item {
    padding: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(76, 175, 80, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Grid positioning for specific items */
.gallery-item:nth-child(1) { grid-column: span 4; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; }
.gallery-item:nth-child(11) { grid-column: span 2; }
.gallery-item:nth-child(12) { grid-column: span 2; }

/* Hide additional images by default */
.gallery-item:nth-child(n+7) {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show More Button Styles */
.see-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    background-color: var(--background-darker);
    margin-top: 20px;
    position: relative;
    z-index: 9999;
}

.see-more-btn {
    background-color: var(--brand-green);
    border: 2px solid var(--brand-green);
    color: var(--text-white);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover {
    background-color: transparent;
    color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.see-more-btn:hover i {
    transform: translateY(3px);
}

/* Ensure gallery wrapper doesn't overlap button */
.gallery-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .see-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .see-more-container {
        padding: 30px 0;
    }
}

@media screen and (max-width: 480px) {
    .see-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .see-more-container {
        padding: 25px 0;
    }
}

/* ===== SHOWS SECTION ===== */
#shows {
    padding: 100px 0;
    position: relative;
    background-color: var(--black);
}

.shows-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.show-item {
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.show-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.show-image {
    height: 200px;
    overflow: hidden;
}

.show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.show-item:hover .show-image img {
    transform: scale(1.05);
}

.show-info {
    padding: 20px;
}

.show-info h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.show-info p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.show-action {
    padding: 0 20px 20px;
    text-align: right;
}

.show-date, .show-location {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.show-date i, .show-location i {
    margin-right: 8px;
    color: var(--brand-green);
}

.shows-view-all {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries for Shows Section */
@media (max-width: 768px) {
    .shows-list {
        grid-template-columns: 1fr;
    }
    
    .show-image {
        height: 180px;
    }
}

/* ===== INTERVIEWS & MAGAZINES SECTION ===== */
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.interview-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.interview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.interview-image {
    height: 200px;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interview-card:hover .interview-image img {
    transform: scale(1.05);
}

.interview-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.interview-content h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.interview-publication {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.interview-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.interview-content .btn-small {
    align-self: flex-end;
    margin-top: auto;
}

.interview-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.interview-publication {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    margin: 5px 0 10px;
    font-size: 0.9rem;
}

.interview-date {
    font-style: italic;
}

.view-all-interviews {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries for Interviews Section */
@media (max-width: 768px) {
    .interviews-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-image {
        height: 200px;
    }
    
    .interview-content h3 {
        font-size: 1.3rem;
    }
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    background-color: var(--background-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.connect-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.1), transparent 70%);
    z-index: 0;
}

.connect-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.connect-title .highlight {
    color: var(--brand-green);
}

.connect-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-gray);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.connect-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.connect-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    width: 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), transparent);
    z-index: 0;
}

.connect-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.connect-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.connect-item:hover .connect-icon {
    transform: scale(1.1) rotate(10deg);
}

.connect-info {
    position: relative;
    z-index: 1;
}

.connect-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.connect-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.connect-item:hover .connect-info h3 {
    transform: translateX(5px);
}

/* Social media platform-specific styles */
.connect-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.connect-icon.facebook {
    background-color: #4267B2;
}

.connect-icon.youtube {
    background-color: #FF0000;
}

.connect-icon.spotify {
    background-color: #1DB954;
}

.connect-icon.tiktok {
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55, #000000);
    background-size: 300% 300%;
    animation: gradientBg 3s ease infinite;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.connect-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsiveness for Connect Section */
@media screen and (max-width: 768px) {
    .connect-section {
        padding: 80px 0;
    }
    
    .connect-title {
        font-size: 2.5rem;
    }
    
    .connect-links {
        flex-direction: column;
        align-items: center;
    }
    
    .connect-item {
        width: 90%;
        max-width: 300px;
    }
    
    .connect-stats {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .connect-title {
        font-size: 2rem;
    }
    
    .connect-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .connect-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== FOOTER ===== */
#footer {
    background-color: var(--black);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--brand-green), 
        transparent
    );
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.footer-logo h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Anton', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-logo h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

.footer-logo h2:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.footer-social a:hover::before {
    transform: translateY(0);
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social a:hover i {
    transform: scale(1.2);
}

/* Social media brand colors */
.footer-social a:nth-child(1)::before {
    background: #C13584; /* Instagram gradient start color */
}

.footer-social a:nth-child(2)::before {
    background: #3b5998; /* Facebook blue */
}

.footer-social a:nth-child(3)::before {
    background: #FF0000; /* YouTube red */
}

.footer-social a:nth-child(4)::before {
    background: #1DB954; /* Spotify green */
}

.footer-social a:nth-child(5)::before {
    background: #000000; /* TikTok black */
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--brand-green);
}

.footer-nav a:hover {
    color: var(--brand-green);
    padding-left: 20px;
}

.footer-nav a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.developer-credit {
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.developer-credit a {
    color: var(--brand-green);
    position: relative;
    transition: all 0.3s ease;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

.developer-credit a:hover {
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.developer-credit a:hover::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    #footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-nav ul {
        align-items: center;
    }

    .footer-logo h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav a:hover {
        padding-left: 25px;
    }
}

@media screen and (max-width: 480px) {
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-logo h2 {
        font-size: 2rem;
    }

    .footer-credits {
        gap: 5px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1200px) {
    .song-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .song-artwork {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 80px 0;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .achievement-showcase {
        flex-direction: column;
        gap: 40px;
    }
    
    .achievement-item {
        width: 80%;
        margin: 0 auto;
    }
    
    .achievement-meter {
        height: 10px;
    }
    
    /* Album section responsive */
    .album-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .album-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    #album {
        padding: 80px 0;
    }
    
    #album .section-title {
        margin-bottom: 50px;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .show-item {
        flex-direction: column;
        text-align: center;
    }
    
    .show-date {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .show-action {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid,
    .album-grid,
    .interviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav ul {
        align-items: center;
    }
}

/* Immersive Experience Section */
#immersive-experience {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    padding: 80px 0;
    background-color: #0c0c0c;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #000);
    overflow: hidden;
    z-index: 1;
    display: block;
}

.parallax-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(75, 160, 40, 0.2), transparent 70%);
    z-index: 1;
}

.floating-text-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    z-index: 2;
}

.floating-text {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(75, 160, 40, 0.6);
    margin: 0 20px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-text.left {
    animation-delay: 0s;
}

.floating-text.center {
    animation-delay: 1s;
}

.floating-text.right {
    animation-delay: 2s;
}

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

.sound-wave-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin: 40px 0;
    z-index: 2;
}

.wave-bar {
    width: 10px;
    height: 20px;
    background: linear-gradient(to top, #4CAF50, #81C784);
    margin: 0 5px;
    border-radius: 5px;
    animation: sound-wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; }
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.3s; }
.wave-bar:nth-child(4) { animation-delay: 0.4s; }
.wave-bar:nth-child(5) { animation-delay: 0.5s; }
.wave-bar:nth-child(6) { animation-delay: 0.6s; }
.wave-bar:nth-child(7) { animation-delay: 0.7s; }
.wave-bar:nth-child(8) { animation-delay: 0.8s; }
.wave-bar:nth-child(9) { animation-delay: 0.9s; }
.wave-bar:nth-child(10) { animation-delay: 1.0s; }
.wave-bar:nth-child(11) { animation-delay: 0.9s; }
.wave-bar:nth-child(12) { animation-delay: 0.8s; }
.wave-bar:nth-child(13) { animation-delay: 0.7s; }
.wave-bar:nth-child(14) { animation-delay: 0.6s; }
.wave-bar:nth-child(15) { animation-delay: 0.5s; }

@keyframes sound-wave {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 80px;
    }
}

.manifesto-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(75, 160, 40, 0.3);
    box-shadow: 0 0 20px rgba(75, 160, 40, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.manifesto-content {
    text-align: center;
    color: #fff;
}

.manifesto-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.manifesto-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.manifesto-signature {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-top: 30px;
    letter-spacing: 5px;
    transform: rotate(-3deg);
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(75, 160, 40, 0.5);
}

.album-covers-floating {
    position: relative;
    width: 100%;
    height: 300px;
    display: block;
    z-index: 2;
    perspective: 1000px;
    overflow: visible;
}

.floating-album {
    position: absolute;
    width: 150px;
    height: 150px;
    transform: rotate(var(--rotate)) translateY(0);
    animation: album-float 8s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(75, 160, 40, 0.6);
    transition: all 0.3s ease;
    z-index: 2;
}

.floating-album:hover {
    transform: scale(1.2) rotate(0deg);
    z-index: 10;
}

@media (max-width: 992px) {
    .floating-album:hover {
        transform: scale(1.1) !important;
    }
}

.floating-album img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.floating-album:nth-child(1) { left: 15%; z-index: 2; }
.floating-album:nth-child(2) { left: 30%; z-index: 3; }
.floating-album:nth-child(3) { left: 50%; transform: translateX(-50%) rotate(var(--rotate)); z-index: 4; }
.floating-album:nth-child(4) { right: 30%; z-index: 3; }
.floating-album:nth-child(5) { right: 15%; z-index: 2; }

@keyframes album-float {
    0%, 100% {
        transform: rotate(var(--rotate)) translateY(0);
    }
    50% {
        transform: rotate(calc(var(--rotate) * 0.7)) translateY(-30px);
    }
}

/* Media Queries for Immersive Experience Section */
@media (max-width: 992px) {
    .floating-text {
        font-size: 6rem;
    }
    
    .floating-album {
        width: 120px;
        height: 120px;
    }
    
    .floating-album:nth-child(1) { left: 10%; }
    .floating-album:nth-child(5) { right: 10%; }
}

@media (max-width: 768px) {
    .floating-text {
        font-size: 4rem;
    }
    
    .manifesto-content h2 {
        font-size: 2rem;
    }
    
    .manifesto-content p {
        font-size: 1rem;
    }
    
    .manifesto-signature {
        font-size: 2.5rem;
    }
    
    .album-covers-floating {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
    
    .floating-album {
        position: relative;
        display: inline-block;
        margin: 10px;
        width: 100px;
        height: 100px;
        transform: none !important;
        animation: none !important;
    }
    
    .floating-album:nth-child(1),
    .floating-album:nth-child(2),
    .floating-album:nth-child(3),
    .floating-album:nth-child(4),
    .floating-album:nth-child(5) {
        position: static;
        left: auto;
        right: auto;
    }
}

@media (max-width: 576px) {
    .floating-text {
        font-size: 3rem;
        margin: 0 10px;
    }
    
    .sound-wave-animation {
        height: 60px;
    }
    
    .wave-bar {
        width: 6px;
        margin: 0 3px;
    }
    
    .manifesto-container {
        padding: 20px;
    }
    
    .manifesto-content h2 {
        font-size: 1.8rem;
    }
    
    .manifesto-signature {
        font-size: 2rem;
    }
    
    .floating-album:nth-child(2),
    .floating-album:nth-child(4) {
        display: none;
    }
    
    .floating-album:nth-child(3) {
        width: 120px;
        height: 120px;
    }
}

/* Weed Elements */
.cannabis-rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    display: block;
}

.cannabis-icon {
    position: absolute;
    color: var(--brand-green);
    opacity: 0.6;
    filter: drop-shadow(0 0 5px rgba(75, 160, 40, 0.5));
    animation-name: cannabis-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 1;
    will-change: transform;
    top: -50px;
}

@keyframes cannabis-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(2000px) rotate(360deg);
        opacity: 0;
    }
}

/* Update color schemes to include brand green */
.floating-text {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(75, 160, 40, 0.6);
    margin: 0 20px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.wave-bar {
    width: 10px;
    height: 20px;
    background: linear-gradient(to top, #4CAF50, #81C784);
    margin: 0 5px;
    border-radius: 5px;
    animation: sound-wave 1.5s ease-in-out infinite;
}

.manifesto-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(75, 160, 40, 0.3);
    box-shadow: 0 0 20px rgba(75, 160, 40, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.manifesto-signature {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    margin-top: 30px;
    letter-spacing: 5px;
    transform: rotate(-3deg);
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(75, 160, 40, 0.5);
}

/* Smoke Effect */
.parallax-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1500" height="1500" viewBox="0 0 1500 1500"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="3" /><feComponentTransfer><feFuncR type="linear" slope="2" intercept="-0.5" /><feFuncG type="linear" slope="2" intercept="-0.5" /><feFuncB type="linear" slope="2" intercept="-0.5" /></feComponentTransfer></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15" /></svg>');
    opacity: 0.4;
    z-index: 1;
    animation: smoke-drift 20s linear infinite alternate;
}

@keyframes smoke-drift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Enhanced Mobile Responsiveness for Immersive Experience Section */
@media screen and (max-width: 480px) {
    /* General improvements */
    .container {
        padding: 0 15px;
    }
    
    /* Header improvements */
    #header {
        padding: 15px 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    /* Immersive experience improvements - Apple-inspired design */
    #immersive-experience {
        padding: 60px 0;
        min-height: calc(var(--vh, 1vh) * 100);
        overflow-x: hidden;
    }
    
    .floating-text-container {
        height: 20vh;
        flex-direction: column;
        gap: 5px;
    }
    
    .floating-text {
        font-size: 2.5rem !important;
        margin: 0 !important;
        text-shadow: 0 0 15px rgba(75, 160, 40, 0.8);
        animation-duration: 4s !important;
    }
    
    .floating-text.left {
        animation-delay: 0s;
    }
    
    .floating-text.center {
        animation-delay: 0.5s;
    }
    
    .floating-text.right {
        animation-delay: 1s;
    }
    
    .sound-wave-animation {
        height: 40px !important;
        margin: 30px 0 !important;
    }
    
    .wave-bar {
        width: 4px !important;
        margin: 0 2px !important;
        border-radius: 2px !important;
    }
    
    .manifesto-container {
        padding: 20px !important;
        margin: 30px 15px !important;
        border-radius: 15px !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(75, 160, 40, 0.4) !important;
    }
    
    .manifesto-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        letter-spacing: 1px !important;
    }
    
    .manifesto-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .manifesto-signature {
        font-size: 1.8rem !important;
        margin-top: 15px !important;
        transform: rotate(-2deg) !important;
    }
    
    .album-covers-floating {
        height: 200px !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }
    
    .floating-album {
        width: 90px !important;
        height: 90px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7), 0 0 10px rgba(75, 160, 40, 0.5) !important;
    }
    
    .floating-album img {
        border-radius: 10px !important;
    }
    
    .floating-album {
        position: relative !important;
        display: inline-block !important;
        margin: 10px !important;
        width: 80px !important;
        height: 80px !important;
        transform: none !important;
        animation: none !important;
    }
    
    .album-covers-floating {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        height: auto !important;
        padding: 10px 0 !important;
    }
    
    .floating-album:nth-child(1),
    .floating-album:nth-child(2),
    .floating-album:nth-child(3),
    .floating-album:nth-child(4),
    .floating-album:nth-child(5) {
        position: static !important;
        left: auto !important;
        right: auto !important;
    }
    
    /* Cannabis icon adjustments */
    .cannabis-icon {
        opacity: 0.5 !important;
        font-size: 15px !important;
        animation-name: cannabis-fall !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
    }
    
    /* Playlist section improvements */
    .playlist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .playlist-cover {
        margin-right: 0;
        margin-bottom: 15px;
        width: 120px;
        height: 120px;
    }
    
    .playlist-info h3 {
        font-size: 1.5rem;
    }
    
    .track {
        padding: 10px;
    }
    
    .track-number {
        width: 20px;
        font-size: 0.8rem;
    }
    
    .track-info {
        margin-left: 10px;
    }
    
    .track-info h4 {
        font-size: 0.9rem;
    }
    
    .track-info p {
        font-size: 0.7rem;
    }
    
    .track-duration {
        font-size: 0.8rem;
        margin-right: 10px;
    }
    
    .play-btn {
        width: 30px;
        height: 30px;
    }
    
    .music-player-container {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .now-playing {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .player-controls {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .player-progress {
        width: 100%;
    }
    
    .player-volume {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav ul {
        align-items: center;
    }
}

/* Improve orientation handling - Apple-inspired design */
@media screen and (max-height: 500px) and (orientation: landscape) {
    #immersive-experience {
        min-height: 150vh;
        padding: 40px 0;
    }
    
    .floating-text-container {
        height: 20vh;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .floating-text {
        font-size: 2.2rem;
        margin: 0 10px;
    }
    
    .sound-wave-animation {
        height: 30px;
        margin: 15px 0;
    }
    
    .wave-bar {
        width: 5px;
        margin: 0 2px;
    }
    
    .manifesto-container {
        margin: 20px auto;
        padding: 15px;
        max-width: 600px;
        backdrop-filter: blur(15px);
    }
    
    .manifesto-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .manifesto-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .manifesto-signature {
        font-size: 2rem;
        margin-top: 10px;
    }
    
    .album-covers-floating {
        height: auto;
        margin: 15px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .floating-album {
        position: relative;
        display: inline-block;
        margin: 5px;
        width: 60px;
        height: 60px;
        transform: none !important;
        animation: none !important;
    }
    
    .floating-album:nth-child(1),
    .floating-album:nth-child(2),
    .floating-album:nth-child(3),
    .floating-album:nth-child(4),
    .floating-album:nth-child(5) {
        position: static;
        left: auto;
        right: auto;
    }
    
    .cannabis-icon {
        font-size: 12px;
    }
    
    /* Improve mobile menu in landscape */
    .mobile-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mobile-nav-links li {
        margin: 8px 0;
    }
}

/* Very Small Mobile Devices - Apple-inspired design */
@media screen and (max-width: 320px) {
    #immersive-experience {
        padding: 40px 0;
    }
    
    .floating-text-container {
        height: 15vh;
        gap: 2px;
    }
    
    .floating-text {
        font-size: 2rem !important;
    }
    
    .sound-wave-animation {
        height: 30px !important;
        margin: 20px 0 !important;
    }
    
    .wave-bar {
        width: 3px !important;
        margin: 0 1px !important;
    }
    
    .manifesto-container {
        padding: 15px !important;
        margin: 20px 10px !important;
    }
    
    .manifesto-content h2 {
        font-size: 1.5rem !important;
    }
    
    .manifesto-content p {
        font-size: 0.85rem !important;
    }
    
    .manifesto-signature {
        font-size: 1.5rem !important;
    }
    
    .album-covers-floating {
        height: auto !important;
        padding: 10px 0 !important;
    }
    
    .floating-album {
        width: 60px !important;
        height: 60px !important;
        margin: 5px !important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .mobile-nav-links a {
        font-size: 1.2rem;
        padding: 12px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .floating-text {
        font-size: 1.5rem !important;
    }
    
    .manifesto-content h2 {
        font-size: 1.2rem !important;
    }
    
    .manifesto-content p {
        font-size: 0.8rem !important;
    }
    
    .manifesto-signature {
        font-size: 1.2rem !important;
    }
    
    .tab-btn {
        font-size: 0.7rem !important;
        padding: 5px 8px !important;
    }
    
    .track-info h4 {
        font-size: 0.8rem !important;
    }
    
    .track-info p {
        font-size: 0.6rem !important;
    }
    
    .track-duration {
        font-size: 0.7rem !important;
    }
    
    .play-btn {
        width: 25px !important;
        height: 25px !important;
    }
    
    .player-controls .control-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
}

.immersive-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Update media queries for the new wrapper */
@media screen and (max-width: 480px) {
    .immersive-content-wrapper {
        padding: 0 15px;
    }
}

@media screen and (max-width: 320px) {
    .immersive-content-wrapper {
        padding: 0 10px;
    }
}

/* Desktop-specific album cover styles */
@media screen and (min-width: 992px) {
    .album-covers-floating {
        position: relative;
        height: 300px;
        display: block;
    }
    
    .floating-album {
        position: absolute;
        display: block;
        margin: 0;
        width: 150px;
        height: 150px;
        transform: rotate(var(--rotate)) translateY(0);
        animation: album-float 8s ease-in-out infinite;
        animation-delay: var(--delay);
    }
    
    .floating-album:nth-child(1) { left: 15%; z-index: 2; }
    .floating-album:nth-child(2) { left: 30%; z-index: 3; }
    .floating-album:nth-child(3) { 
        left: 50%; 
        transform: translateX(-50%) rotate(var(--rotate));
        z-index: 4; 
    }
    .floating-album:nth-child(4) { right: 30%; z-index: 3; }
    .floating-album:nth-child(5) { right: 15%; z-index: 2; }
}

/* Additional gallery animations and transitions */
.gallery-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item.filtering {
    transform: scale(0.95);
    opacity: 0.7;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.hover .gallery-overlay {
    opacity: 1;
}

.gallery-item.hover .gallery-info {
    transform: translateY(0);
}

/* Gallery image hover effects */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(75, 160, 40, 0.2), transparent 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Pulse animation for filter buttons */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(75, 160, 40, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(75, 160, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(75, 160, 40, 0);
    }
}

.filter-btn.active {
    animation: pulse-border 2s infinite;
}

/* Staggered animation for gallery items */
@keyframes gallery-item-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* See More Button Styles */
.see-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.see-more-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--brand-green);
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--brand-green) 0%, rgba(75, 160, 40, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.see-more-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 160, 40, 0.4);
}

.see-more-btn:hover::before {
    opacity: 1;
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Fix for gallery grid alignment */
.creative-gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 1fr;
    gap: 0;
    width: 100%;
    background-color: var(--black);
}

.gallery-item {
    padding: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid positioning for specific items */
.gallery-item:nth-child(1) { grid-column: span 4; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; }
.gallery-item:nth-child(11) { grid-column: span 2; }
.gallery-item:nth-child(12) { grid-column: span 2; }

/* Hide additional images by default */
.gallery-item:nth-child(n+7) {
    display: none;
}

.gallery-item.show {
    display: block;
}

/* Show More Button Styles */
.see-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: var(--black);
}

.see-more-btn {
    background-color: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: var(--brand-green);
    color: var(--black);
}

@media screen and (max-width: 768px) {
    .creative-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item:nth-child(1) { grid-column: span 4; }
    .gallery-item:nth-child(2) { grid-column: span 2; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-item:nth-child(5) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 4; }
    .gallery-item:nth-child(7) { grid-column: span 2; }
    .gallery-item:nth-child(8) { grid-column: span 2; }
    .gallery-item:nth-child(9) { grid-column: span 2; }
    .gallery-item:nth-child(10) { grid-column: span 2; }
    .gallery-item:nth-child(11) { grid-column: span 2; }
    .gallery-item:nth-child(12) { grid-column: span 2; }
}

@media screen and (max-width: 480px) {
    .creative-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(n) {
        grid-column: span 2;
    }
}

#gallery {
    padding: 0;
    background-color: var(--black);
}

#gallery .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.gallery-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Remove filter buttons and see more button */
.gallery-filter,
.see-more-container {
    display: none;
}

.gallery-title-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.gallery-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: titleFadeIn 0.8s ease forwards;
}

.gallery-title .highlight {
    color: var(--brand-green);
    position: relative;
    display: inline-block;
    animation: highlightPulse 2s ease-in-out infinite;
}

.title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    margin: 0 auto;
    position: relative;
    animation: underlineExpand 1s ease forwards 0.5s;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        color: var(--brand-green);
    }
    50% {
        color: var(--brand-green-light);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 100px;
    }
}

/* Responsive styles for the title */
@media screen and (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-title-container {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-title-container {
        margin-bottom: 25px;
    }
    
    .title-underline {
        height: 3px;
    }
}

/* Update existing gallery padding to accommodate title */
#gallery {
    padding: 50px 5%;
}

.gallery-wrapper {
    margin-top: 20px;
}

.music-notes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.music-note {
    position: absolute;
    color: var(--brand-green);
    opacity: 0.6;
    filter: drop-shadow(0 0 5px rgba(75, 160, 40, 0.5));
    animation: note-fall linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes note-fall {
    0% {
        transform: translate(0, 0) rotate(var(--rotate, 0deg));
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x-drift, 20px), calc(100vh + 100px)) rotate(var(--final-rotate, 360deg));
        opacity: 0;
    }
}

/* Interviews Section */
#interviews {
    padding: 100px 0;
    background-color: var(--background-darker);
    position: relative;
}

.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.interview-card {
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.interview-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.interview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interview-card:hover .interview-image img {
    transform: scale(1.05);
}

.interview-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.interview-content h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.interview-publication {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.interview-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.interview-content .btn-small {
    align-self: flex-end;
    margin-top: auto;
}

.interview-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.interview-publication {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    margin: 5px 0 10px;
    font-size: 0.9rem;
}

.interview-date {
    font-style: italic;
}

.view-all-interviews {
    text-align: center;
    margin-top: 40px;
}

/* Media Queries for Interviews Section */
@media (max-width: 768px) {
    .interviews-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-image {
        height: 200px;
    }
    
    .interview-content h3 {
        font-size: 1.3rem;
    }
}

/* ===== CONNECT SECTION ===== */
@media (max-width: 900px) {
  body, button, input, textarea, select {
    cursor: none !important;
  }
}