@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-color: #070707;
    --card-bg: rgba(22, 22, 22, 0.65);
    --primary: #4AD2BE; /* Turquoise */
    --secondary: #F08B57; /* Orange */
    --tertiary: #F7E59D; /* Cream */
    --text-main: #FFFFFF;
    --text-muted: #D1D1D1;
    --glow-primary: rgba(74, 210, 190, 0.6);
    --glow-secondary: rgba(240, 139, 87, 0.6);
    --glow-tertiary: rgba(247, 229, 157, 0.6);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.site-bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    pointer-events: none;
    filter: saturate(1.05) contrast(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .site-bg-video {
        display: none;
    }
}

/* Background Video Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 7, 7, 0.58), rgba(7, 7, 7, 0.82));
    z-index: -2;
}

/* Glowing background ambient lights */
.ambient-light-1 {
    position: fixed;
    top: 15%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(74, 210, 190, 0.08) 0%, rgba(7, 7, 7, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.ambient-light-2 {
    position: fixed;
    bottom: 10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(240, 139, 87, 0.06) 0%, rgba(7, 7, 7, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img-wrapper {
    width: 54px; /* Increased from 48px */
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-container:hover .logo-img-wrapper {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow-primary);
    transform: scale(1.08) rotate(5deg);
}

.logo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text span.teal { color: var(--primary); text-shadow: 0 0 12px var(--glow-primary); }
.logo-text span.orange { color: var(--secondary); text-shadow: 0 0 12px var(--glow-secondary); }
.logo-text span.yellow { color: var(--tertiary); text-shadow: 0 0 12px var(--glow-tertiary); }

/* Animated CSS Equalizer in Header */
.header-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 22px;
    margin-left: 4px;
}

.header-equalizer .bar {
    width: 2px;
    height: 100%;
    background-color: var(--primary);
    animation: bounce 0.8s ease-in-out infinite alternate;
    border-radius: 1px;
}

.header-equalizer .bar:nth-child(2) { background-color: var(--secondary); animation-duration: 0.5s; animation-delay: 0.1s; }
.header-equalizer .bar:nth-child(3) { background-color: var(--tertiary); animation-duration: 0.9s; animation-delay: 0.2s; }
.header-equalizer .bar:nth-child(4) { background-color: var(--primary); animation-duration: 0.6s; animation-delay: 0.15s; }
.header-equalizer .bar:nth-child(5) { background-color: var(--secondary); animation-duration: 0.7s; animation-delay: 0.05s; }

@keyframes bounce {
    0% { height: 15%; }
    100% { height: 100%; }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
}

nav a:hover, nav a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lang-btn {
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
    filter: grayscale(0.55);
    opacity: 0.7;
    transition: transform 0.22s ease, opacity 0.22s ease, filter 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.lang-btn:hover,
.lang-btn.active {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-1px);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 14px rgba(74, 210, 190, 0.18);
}

/* Layout Containers */
main {
    padding: 2rem 5% 5rem 5%;
    max-width: 1250px;
    margin: 0 auto;
    min-height: calc(100vh - 350px);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.routing-pending .section.active {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 5rem 0;
    gap: 1.5rem;
    text-align: center;
    position: relative;
}

.hero-logo-large {
    width: 140px; /* Increased from 120px for more weight */
    height: 140px;
    border-radius: 50%;
    background-color: #000000;
    border: 3px solid var(--primary);
    overflow: hidden;
    box-shadow: 0 0 25px var(--glow-primary);
    margin-bottom: 1rem;
    animation: rotatePulse 4s infinite linear;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.hero-logo-large::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    opacity: 0.5;
    animation: rotateOuter 15s infinite linear;
}

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

@keyframes rotatePulse {
    0% {
        box-shadow: 0 0 25px var(--glow-primary);
        border-color: var(--primary);
    }
    33% {
        box-shadow: 0 0 30px var(--glow-secondary);
        border-color: var(--secondary);
    }
    66% {
        box-shadow: 0 0 30px var(--glow-tertiary);
        border-color: var(--tertiary);
    }
    100% {
        box-shadow: 0 0 25px var(--glow-primary);
        border-color: var(--primary);
    }
}

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

.hero-logo-large:hover img {
    transform: scale(1.08);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 span.accent {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(74, 210, 190, 0.3));
}

.hero p.tagline {
    font-size: 1.55rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--glow-secondary);
}

.hero p.description {
    max-width: 780px;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Info Badges (Years of experience highlight - updated) */
.hero-experience-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.55rem 1.4rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tertiary);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-color: var(--tertiary);
    text-shadow: 0 0 8px var(--glow-tertiary);
}

/* Social Media Icons in Hero */
.social-links-hero {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
    align-items: center;
}

.social-hero-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-hero-btn svg.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-hero-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.social-hero-btn.instagram:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 18px var(--glow-secondary);
}

.social-hero-btn.instagram:hover svg.social-icon {
    fill: var(--secondary);
    transform: scale(1.15);
}

.social-hero-btn.facebook:hover {
    border-color: var(--primary);
    box-shadow: 0 0 18px var(--glow-primary);
}

.social-hero-btn.facebook:hover svg.social-icon {
    fill: var(--primary);
    transform: scale(1.15);
}

.btn-group {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 4px 15px rgba(74, 210, 190, 0.3);
}

.btn-primary:hover {
    background-color: #5cf4df;
    box-shadow: 0 6px 25px rgba(74, 210, 190, 0.6);
    transform: translateY(-4px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #2ef779;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-4px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(240, 139, 87, 0.25);
    transform: translateY(-4px);
}

/* Section Styling */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.6rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title span.accent-teal {
    color: var(--primary);
    text-shadow: 0 0 15px var(--glow-primary);
}

.section-title span.accent-orange {
    color: var(--secondary);
    text-shadow: 0 0 15px var(--glow-secondary);
}

.section-title span.accent-cream {
    color: var(--tertiary);
    text-shadow: 0 0 15px var(--glow-tertiary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Glassmorphism Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(30, 30, 30, 0.75);
}

.card.teal-glow { border-color: rgba(74, 210, 190, 0.12); }
.card.teal-glow:hover {
    border-color: rgba(74, 210, 190, 0.6);
    box-shadow: 0 15px 35px rgba(74, 210, 190, 0.2);
}

.card.orange-glow { border-color: rgba(240, 139, 87, 0.12); }
.card.orange-glow:hover {
    border-color: rgba(240, 139, 87, 0.6);
    box-shadow: 0 15px 35px rgba(240, 139, 87, 0.2);
}

.card.yellow-glow { border-color: rgba(247, 229, 157, 0.12); }
.card.yellow-glow:hover {
    border-color: rgba(247, 229, 157, 0.6);
    box-shadow: 0 15px 35px rgba(247, 229, 157, 0.2);
}

.card-icon {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.card.teal-glow h3 { color: var(--primary); }
.card.orange-glow h3 { color: var(--secondary); }
.card.yellow-glow h3 { color: var(--tertiary); }

.card-arrow {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.card.active .card-arrow {
    transform: rotate(90deg);
    color: var(--text-main);
}

.card p.card-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Accordion details */
.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin 0.3s ease;
    font-size: 0.95rem;
    color: #ECECEC;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0;
    line-height: 1.7;
}

.card.active .service-details {
    max-height: 250px;
    opacity: 1;
    margin-top: 1.2rem;
    padding-top: 1.1rem;
}

/* Multimedia Grid Section */
.media-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.media-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.media-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.media-card iframe {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Photo Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    background: #000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(74, 210, 190, 0.25);
}

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

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

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

.gallery-overlay span {
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay span {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 4, 4, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.9);
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.show img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Artists Catalog */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.artist-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.6rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.artist-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(240, 139, 87, 0.2);
}

.artist-avatar-wrapper {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #111;
}

.artist-card:hover .artist-avatar-wrapper {
    border-color: var(--secondary);
    box-shadow: 0 0 18px var(--glow-secondary);
    transform: scale(1.05);
}

.artist-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.artist-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(4, 4, 4, 0.88);
    backdrop-filter: blur(12px);
    padding: 5rem 5% 2rem 5%;
    margin-top: 6rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
    margin: 4rem auto 2rem auto;
    max-width: 1200px;
    opacity: 0.25;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive and Smartphone Adjustments */
@media (max-width: 768px) {
    body::before {
        filter: blur(2px); /* Lower blur on mobile to improve readability */
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }
    
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    main {
        padding: 1rem 4% 3rem 4%;
    }

    .hero {
        padding: 3rem 0;
        gap: 1.2rem;
    }

    .hero-logo-large {
        width: 110px;
        height: 110px;
    }

    .hero h1 {
        font-size: 2.8rem; /* Scaled down for smaller screens */
    }

    .hero p.tagline {
        font-size: 1.2rem;
    }

    .hero p.description {
        font-size: 1.05rem;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.8rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); /* 2 columns on small phones */
        gap: 0.8rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .artist-avatar-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .artist-card h3 {
        font-size: 1.1rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 5% 2rem 5%;
    }
    /* Mobile blog adjustments */
    .article-title {
        font-size: 2rem;
    }
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= BLOG STYLING (GLOBAL) ================= */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-thumbnail-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #111;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumbnail {
    transform: scale(1.05);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p p {
    margin-bottom: 0;
}

.blog-readmore {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.blog-card:hover .blog-readmore {
    gap: 8px;
}

/* Full Article Reader */
.blog-post-reader {
    animation: fadeIn 0.5s ease forwards;
}

.full-article {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(22, 22, 22, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.article-date {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.article-banner {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E6E6E6;
}

.article-body p {
    margin-bottom: 1.6rem;
}

.article-body h2, .article-body h3 {
    font-family: var(--font-heading);
    margin: 2.8rem 0 1.2rem 0;
    color: var(--primary);
    font-weight: 700;
}

.article-body h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.5rem;
}

.article-body h3 {
    font-size: 1.4rem;
}

.article-body iframe {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.article-body a:hover {
    color: var(--secondary);
}

.loading-spinner {
    text-align: center;
    padding: 5rem 2rem;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.loading-spinner::after {
    content: "...";
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0% { content: "."; }
    50% { content: ".."; }
    100% { content: "..."; }
}

.error-message {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.25rem;
    color: var(--secondary);
    background: rgba(240, 139, 87, 0.05);
    border: 1px dashed rgba(240, 139, 87, 0.2);
    border-radius: 16px;
    max-width: 600px;
    margin: 2rem auto;
}

/* Article Share Bar */
.article-share-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.2rem;
    animation: shareBarIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.share-title {
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.share-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.84rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    animation: shareButtonIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.share-actions .share-btn:nth-child(2) {
    animation-delay: 0.04s;
}

.share-actions .share-btn:nth-child(3) {
    animation-delay: 0.08s;
}

.share-actions .share-btn:nth-child(4) {
    animation-delay: 0.12s;
}

.share-actions .share-btn:nth-child(5) {
    animation-delay: 0.16s;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.06);
    background: rgba(255, 255, 255, 0.08);
}

.share-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.share-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    fill: currentColor;
}

.share-btn.whatsapp {
    color: #25D366;
}

.share-btn.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.25);
}

.share-btn.facebook {
    color: #1877F2;
}

.share-btn.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 0 12px rgba(24, 119, 242, 0.25);
}

.share-btn.copy:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 12px var(--glow-primary);
}

.share-btn.native-share {
    background: linear-gradient(135deg, rgba(74, 210, 190, 0.1) 0%, rgba(240, 139, 87, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.share-btn.native-share:hover {
    background: linear-gradient(135deg, rgba(74, 210, 190, 0.2) 0%, rgba(240, 139, 87, 0.2) 100%);
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(240, 139, 87, 0.3);
}

.share-btn.instagram {
    color: #E4405F;
}

.share-btn.instagram:hover {
    border-color: #E4405F;
    box-shadow: 0 0 15px rgba(228, 64, 95, 0.28);
}

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

@keyframes shareButtonIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
