/* ------------------------------------------ */
/* --- 1. Base Styles & Variables (ORIGINAL) --- */
/* ------------------------------------------ */
:root {
    --primary-color: #ff69b4; /* Aesthetic Pink */
    --secondary-color: #4a4e69; /* Dark Gray for text/accents */
    --tertiary-color: #9d8189; /* Muted contrast color */
    --background-color: #f8f7f9; /* Light, soft background */
    --card-background: #ffffff;
    --font-stack: 'Inter', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--secondary-color);
    scroll-behavior: smooth;
}

h1, h2, h3 { color: var(--secondary-color); font-weight: 700; margin-bottom: 15px; }

h2 {
    font-size: 1.8em;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
    margin: 0 auto 30px auto;
    width: fit-content;
}

.section-padding { padding: 40px 15px; max-width: 1200px; margin: 0 auto; }

.cta-button, .message-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 6px rgba(255, 105, 180, 0.4);
}

.cta-button:hover, .message-form button:hover {
    background-color: #e35a9f;
    transform: translateY(-2px);
}

/* ------------------------------------------ */
/* --- 2. Header & Navigation --- */
/* ------------------------------------------ */
.main-header {
    background-color: var(--card-background);
    box-shadow: var(--shadow);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 1.6em;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 65px; 
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-menu.active { display: flex; }

.nav-menu a {
    padding: 15px 20px;
    text-decoration: none;
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.nav-menu a:hover { background-color: #f0f0f0; color: var(--primary-color); }

.menu-toggle {
    display: flex; 
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ------------------------------------------ */
/* --- 3. Hero & Other Original Styles --- */
/* ------------------------------------------ */
.hero-section {
    position: relative;
    text-align: center;
    color: white;
    padding: 50px 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffc0cb 100%);
}

.hero-image {
    width: 250px; 
    height: 250px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 4px solid #ff99cc;
    box-shadow: 0 0 25px rgba(255, 153, 204, 0.5);
    margin-bottom: 20px;
}

.hero-content { display: flex; flex-direction: column; align-items: center; }

.hero-text h1 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.tagline { font-style: italic; opacity: 0.9; margin-bottom: 30px; }

.social-links a {
    color: white;
    font-size: 1.8em;
    margin: 0 12px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover { color: var(--secondary-color); transform: scale(1.1); }

/* --- Masonry Grid (Original) --- */
.masonry-grid { column-count: 2; column-gap: 15px; width: 100%; }
.gallery-item {
    width: 100%;
    height: auto !important; 
    margin-bottom: 15px; 
    break-inside: avoid; 
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease, opacity 0.3s;
    box-shadow: var(--shadow);
}
.gallery-item:hover { transform: scale(1.02); opacity: 0.9; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

.gallery-categories { text-align: center; margin-bottom: 30px; }
.gallery-categories button {
    background-color: var(--tertiary-color);
    color: white;
    border: none;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}
.gallery-categories button.active, .gallery-categories button:hover { background-color: var(--primary-color); }
.gallery-item.hidden { display: none; }

/* --- Slider & Other Components --- */
.slider-container { overflow: hidden; position: relative; border-radius: 12px; box-shadow: var(--shadow); }
.featured-slide { width: 100%; height: auto; object-fit: cover; display: block; border-radius: 12px; }
.slider-note { text-align: center; padding: 20px; background-color: var(--card-background); border-radius: 0 0 12px 12px; }

.edits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.edit-preview {
    background-color: var(--card-background);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}
.edit-preview img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; }
.music-label { font-size: 0.9em; color: var(--tertiary-color); margin-bottom: 10px; }
.download-link { color: var(--primary-color); text-decoration: none; font-weight: 600; }

.bio-card { background-color: var(--card-background); padding: 20px; border-radius: 12px; box-shadow: var(--shadow); }
.fun-facts { margin-top: 20px; padding-top: 15px; border-top: 1px dashed #e0e0e0; }
.fun-facts ul { list-style: none; padding: 0; }
.fun-facts li { margin-bottom: 5px; }

.quote-card {
    background-color: var(--card-background);
    border-left: 5px solid var(--primary-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow);
}
.quote-card p { font-style: italic; color: var(--secondary-color); }
.quote-card .source { display: block; text-align: right; font-weight: 600; margin-top: 10px; color: var(--tertiary-color); font-size: 0.9em; }
.copy-button {
    position: absolute; top: 5px; right: 5px; background: none; border: none; color: var(--primary-color); cursor: pointer; font-size: 0.9em; padding: 5px; border-radius: 5px; transition: background-color 0.2s;
}
.copy-button:hover { background-color: #ffe0f0; }

.news-section ul { list-style: none; padding: 0; }
.news-section li {
    background-color: var(--card-background);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--tertiary-color);
    display: flex; 
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px; 
}
.news-section li a.news-source { color: var(--primary-color); font-weight: 600; text-decoration: none; flex-shrink: 0; transition: color 0.2s, text-decoration 0.2s; font-size: 0.9em; }
.news-section li a.news-source:hover { color: #e35a9f; text-decoration: underline; }

/* --- Modal --- */
.modal { display: none; position: fixed; z-index: 2000; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.modal-content { margin: auto; display: block; width: 90%; max-width: 900px; border-radius: 10px; }
.close-btn { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.close-btn:hover, .close-btn:focus { color: var(--primary-color); text-decoration: none; cursor: pointer; }

footer { text-align: center; padding: 30px 10px; background-color: var(--secondary-color); color: white; font-size: 0.85em; margin-top: 40px; }

/* --- Responsive (Desktop) --- */
@media (min-width: 768px) {
    .section-padding { padding: 60px 50px; }
    .menu-toggle { display: none; }
    .nav-menu { display: flex; flex-direction: row; position: static; width: auto; box-shadow: none; background-color: transparent; }
    .nav-menu a { padding: 0 15px; border-bottom: none; }
    .hero-content { flex-direction: row; text-align: left; max-width: 1000px; margin: auto; align-items: flex-start; }
    .hero-image { margin-right: 40px; margin-bottom: 0; }
    .hero-text h1 { font-size: 4em; }
    .masonry-grid { column-count: 4; }
    .edits-grid { grid-template-columns: repeat(3, 1fr); }
    .fun-facts { columns: 2; column-gap: 30px; }
}

/* ========================================================= */
/* === THE ORIGINAL GLASS/BLACK CARD STYLES (PRESERVED) === */
/* ========================================================= */
/* These styles are used for the Home Page and Bio Page Forms */

.contact-section { position: relative; padding: 80px 20px; display: flex; justify-content: center; align-items: center; }

/* The Glass Card (Used on Home Page) */
.contact-card {
    width: 100%; max-width: 500px; margin: 0 auto;
    background: rgba(230, 161, 195, 0.5); /* Glass Pink */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    z-index: 2;
}
.contact-header h2 { color: #fff; text-align: center; margin-bottom: 5px; font-size: 2rem; border-bottom: none; }
.contact-header p { color: #aaa; text-align: center; margin-bottom: 30px; font-size: 0.9rem; }

.form-group { position: relative; margin-bottom: 25px; }
.aesthetic-form input, .aesthetic-form textarea {
    width: 100%; padding: 12px 0; font-size: 16px; color: #fff; background: transparent; border: none; border-bottom: 2px solid #555; outline: none; font-family: 'Inter', sans-serif; transition: border-color 0.3s;
}
.aesthetic-form label { position: absolute; top: 10px; left: 0; color: #888; pointer-events: none; transition: 0.3s ease all; }
.aesthetic-form input:focus, .aesthetic-form textarea:focus { border-bottom: 2px solid #ff99cc; }
.aesthetic-form input:focus ~ label, .aesthetic-form input:not(:placeholder-shown) ~ label, .aesthetic-form textarea:focus ~ label, .aesthetic-form textarea:not(:placeholder-shown) ~ label { top: -20px; font-size: 12px; color: #ff99cc; }

.send-btn {
    width: 100%; padding: 14px; background: linear-gradient(45deg, #ff99cc, #ff5e99); border: none; border-radius: 30px; color: white; font-weight: bold; font-size: 1rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.send-btn:hover { transform: scale(1.02); box-shadow: 0 0 15px rgba(255, 94, 153, 0.6); }

/* ========================================================= */
/* === NEW FAN WALL SPECIFIC STYLES (SOLID PINK) === */
/* ========================================================= */
/* This section matches the specific Pink Screenshots you sent */

/* 1. Header Gradient (Matching Home Page Screenshot) */
.fanwall-header-banner {
    background: linear-gradient(90deg, #ff64a5 0%, #fdbfd2 100%);
    color: white;
    padding: 80px 15px 40px;
    text-align: center;
}
.fanwall-header-banner h1 { font-size: 2.5em; margin-bottom: 5px; text-shadow: none; color: white; }
.fanwall-header-banner p { opacity: 0.9; font-style: italic; color: white; }

/* 2. Wrapper for Form */
.fanwall-content-wrapper { display: flex; justify-content: center; padding: 40px 15px; }

/* 3. The New PINK FORM Card (Overrides Glass Card on Fan Wall) */
.aesthetic-form-card {
    background-color: #eac8d6; /* Solid Pink from screenshot */
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

.aesthetic-form-card h2 {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: none;
    text-shadow: none;
    width: 100%;
}

.title-underline {
    width: 100%;
    height: 3px;
    background-color: #c98da3; 
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 2px;
}

.form-subtitle { color: #7a656d; font-size: 0.95rem; margin-bottom: 40px; font-weight: 500; }

/* Clean Inputs (Fan Wall Specific) */
.clean-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #6b5c63;
    border-radius: 0;
    padding: 12px 0;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #4a4a4a;
    outline: none;
    box-shadow: none;
}
.clean-input::placeholder { color: #8c7b82; font-weight: 400; }
.clean-input:focus { border-bottom-color: #ffffff; }

/* Pill Button (Fan Wall Specific) */
.send-pill-btn {
    width: 100%;
    background-color: #f06292;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(240, 98, 146, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.send-pill-btn:hover { background-color: #ec407a; transform: translateY(-2px); }

/* 4. Fan Wall Grid & Cards */
.fanwall-section { padding: 40px 20px; background: transparent; }
.fanwall-header { text-align: center; margin-bottom: 40px; }
.fanwall-header h2 { color: #ec8ab1; font-size: 2rem; border-bottom: none; text-shadow: none; }
.fanwall-header p { color: #666; }

.fan-message-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Fan Cards (Solid Pink - Matches WhatsApp Screenshot) */
.fan-card {
    background: #f9a8d4; /* Solid Pink */
    border: 2px solid #f472b6;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.2);
    display: flex;
    flex-direction: column;
    color: white;
    transition: transform 0.3s;
}

.fan-card:hover {
    transform: translateY(-5px);
    background: #f9a8d4; /* Keep Pink on hover */
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}

.fan-card p {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-wrap;
    text-shadow: none;
}

.fan-card .author, .author {
    margin-top: auto;
    text-align: right;
    color: #ffe4e6;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: none; /* Remove black line */
    padding-top: 10px;
}

/* Responsive adjustments for Fan Wall */
@media (max-width: 900px) {
    .fan-message-grid { grid-template-columns: 1fr; }
    .aesthetic-form-card { padding: 30px; }
}
/* ========================================================= */
/* === AWARDS SECTION STYLES (CONFLICT-FREE VER.) === */
/* ========================================================= */

.horizontal-section {
    padding: 40px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif; 
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 2rem;
    color: #4a4e69; 
    position: relative;
    margin: 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: #ff69b4; 
    margin-top: 5px;
    border-radius: 2px;
}

.scroll-controls {
    display: flex;
    gap: 10px;
}

.scroll-btn {
    background: white;
    border: 1px solid #ff69b4;
    color: #ff69b4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.scroll-btn:hover {
    background: #ff69b4;
    color: white;
    transform: scale(1.1);
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 25px 40px 25px; 
    gap: 30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

/* Individual Award Card Style */
.award-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 105, 180, 0.1);
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.25);
}

/* --- FIX: SCOPED SLIDER STYLES --- */
/* We add .award-card before .slider-container so it ONLY touches the awards */

.award-card .slider-container {
    width: 100%;
    height: 325px; /* This caused the conflict, now it's safe */
    position: relative;
    overflow: hidden;
    background: #eee;
}

.award-card .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.award-card .slide-img.active { opacity: 1; }

.award-card .slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --------------------------------- */

.award-year {
    background: #ff69b4;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.75rem;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.award-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #4a4e69;
    margin: 0 0 5px 0;
}

.award-org {
    color: #ff69b4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.about-award-section {
    background: #fff5f8;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 3px solid #ff69b4;
    flex-grow: 1;
}

.about-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.award-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background: white;
    color: #ff69b4;
    border: 2px solid #ff69b4;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.9rem;
    gap: 8px;
}

.award-link-btn:hover {
    background: #ff69b4;
    color: white;
}

@media (max-width: 768px) {
    .award-card { min-width: 280px; max-width: 280px; }
    .section-header { padding: 0 15px; }
    .scroll-container { padding: 20px 15px 40px 15px; }
}