
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0e0e0e;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* =============================
   HERO SECTION
============================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.section {
    padding: 50px 0;
}

.two-column {
    display: flex;
    gap: 50px;
    align-items: center;
}

.two-column img {
    width: 100%;
}

.stats {
    background: #111;
    padding: 80px 0;
}

.stat-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-grid h3 {
    font-size: 40px;
    color: #c9a227;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
}

/**** YOUTUBE ****/

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}


/**** SPOTIFY ****/

#featured-tracks {
    background: #111;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.spotify-grid iframe {
    width: 100%;
    border-radius: 12px;
}

.spotify-grid iframe {
    transition: transform 0.3s ease;
}

.spotify-grid iframe:hover {
    transform: translateY(-5px);
}

/* Mobile */
@media (max-width: 768px) {
    .spotify-grid {
        grid-template-columns: 1fr;
    }
}


/**** SOCIAL ICON LINKS ****/

#links {
    background: #111;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-icon {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-icon:hover {
    transform: translateY(-6px);
    background: #c9a227;
    color: black;
    border-color: #c9a227;
}

/*************************************
   BIO SECTION (MULTI-LANGUAGE + READ MORE)
*************************************/

#about .bio-container {
    max-width: 800px;
}

/* ---------- Language Toggle ---------- */

#about .language-toggle {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    flex-wrap: wrap; /* important for mobile */
}

#about .lang-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

#about .lang-btn.active {
    color: #c9a227;
}

#about .lang-btn.active::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c9a227;
}

/* ---------- Language Visibility ---------- */

/* Hide ALL languages */
#about .bio-content {
    display: none;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* Show only active */
#about .bio-content.active {
    display: block;
}

/* ---------- Read More ---------- */

#about .bio-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#about .bio-content.expanded .bio-more {
    max-height: 1200px; /* big enough for long bio */
}

#about .read-more-btn {
    background: none;
    border: none;
    color: #c9a227;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    padding: 0;
    font-size: 14px;
}

#about .read-more-btn:hover {
    text-decoration: underline;
}

/* ---------- Mobile adjustments ---------- */

@media (max-width: 768px) {

    #about .bio-content {
        font-size: 16px;
        line-height: 1.6;
    }

    #about .language-toggle {
        gap: 15px;
    }

}

/* ========================================
   GALLERY GRID
======================================== */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Thumbnail Images */
.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 5;        /* Instagram-like vertical ratio */
    object-fit: cover;          /* Safe because thumbnails are pre-cropped */
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) {
    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
}

/* ========================================
   MOBILE LAYOUT
======================================== */

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-img {
        aspect-ratio: 4 / 5;
    }
}

/* ========================================
   LIGHTBOX OVERLAY
======================================== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.25s ease forwards;
}

/* Lightbox Full Image */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    animation: zoomIn 0.25s ease;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =============================
   FORM
============================= */

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.honeypot {
    display: none;
}

.form-response {
    margin-top: 15px;
    font-weight: 500;
}

.form-response.success {
    color: #c9a227;
}

.form-response.error {
    color: #ff4d4d;
}


input, textarea {
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
}

.btn {
    background: #c9a227;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000;
}

@media(max-width: 768px) {
    .two-column {
        flex-direction: column;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 80px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
        cursor: pointer;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

}

@media (max-width: 768px) {

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 180px;   /* smaller visual footprint */
    }

}
