/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #0a0c10;
    --bg-card: #12151c;
    --bg-card-hover: #1a1e28;
    --primary: #c5a880; /* Champagne Gold */
    --primary-light: #dfcbb5;
    --primary-dark: #a3845b;
    --accent: #d4af37; /* Bright Gold */
    --text-primary: #f5f5f7; /* Warm White */
    --text-secondary: #a0a5b5; /* Muted Blue-Grey */
    --text-muted: #626775;
    --border-color: rgba(197, 168, 128, 0.15);
    --border-hover: rgba(197, 168, 128, 0.35);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 20px rgba(197, 168, 128, 0.15);
    --shadow-gold-hover: 0 0 35px rgba(197, 168, 128, 0.3);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

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

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Utility Components
   ========================================================================== */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.navbar:not(.scrolled) {
    padding: 24px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-title {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.lang-btn:hover, .lang-btn.active {
    color: var(--primary);
}

.lang-divider {
    color: var(--text-muted);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.08), transparent 60%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 600;
    animation: fadeInUp 1s ease forwards;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1.4s ease forwards;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.6s ease forwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hero-image {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    filter: grayscale(15%) contrast(105%);
    transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.02);
}

.hero-image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-normal);
}

.hero-image-wrapper:hover .hero-image-border {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border-color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* ==========================================================================
   Biography Section
   ========================================================================== */
.bio-section {
    background-color: var(--bg-card);
}

.bio-container {
    max-width: 850px;
    margin: 0 auto;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: justify;
}

.bio-lead {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--primary-light);
    font-style: italic;
    text-align: center;
    margin-bottom: 12px;
}

.bio-paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================================================
   Schedule Section
   ========================================================================== */
.sch-section {
    background-color: var(--bg-dark);
}

.sch-timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.sch-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sch-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.sch-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.sch-item.hidden-item {
    display: none;
}

.sch-date-box {
    background-color: rgba(197, 168, 128, 0.05);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.sch-date-icon {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.sch-date-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.sch-info-box {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sch-work {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.sch-role-venue {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.sch-role, .sch-venue {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sch-role i, .sch-venue i {
    color: var(--primary);
    font-size: 0.85rem;
}

.sch-expand-container {
    text-align: center;
    margin-top: 40px;
}

.sch-expand-container .btn {
    min-width: 240px;
}

/* ==========================================================================
   Repertoire Section
   ========================================================================== */
.rep-section {
    background-color: var(--bg-card);
}

.rep-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.01);
}

.rep-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.rep-table th {
    background-color: rgba(197, 168, 128, 0.05);
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.rep-table td {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.rep-table tr {
    transition: var(--transition-fast);
}

.rep-table tr:hover td {
    color: var(--text-primary);
    background-color: rgba(197, 168, 128, 0.03);
}

.rep-table td.role-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-light);
}

.rep-table td.composer-name {
    font-style: italic;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gal-section {
    background-color: var(--bg-dark);
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gal-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 3/4; /* Consistent portrait-first ratio */
}

.gal-credit {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    background-color: rgba(10, 12, 16, 0.75);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 3;
    transition: var(--transition-normal);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.gal-item:hover .gal-credit {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--bg-dark);
}

.gal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(10%) contrast(102%);
}

.gal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 16, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gal-overlay i {
    font-size: 2.2rem;
    color: var(--primary);
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gal-item:hover .gal-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

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

.gal-item:hover .gal-overlay i {
    transform: scale(1);
    color: var(--accent);
}

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

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 3rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2001;
    line-height: 1;
}

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

.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 85%;
    max-height: 85%;
}

.lightbox-content {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.lightbox-credit {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-align: center;
    font-weight: 300;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    z-index: 2001;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ==========================================================================
   Media Section
   ========================================================================== */
.med-section {
    background-color: var(--bg-card);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.video-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold-hover);
    background-color: rgba(255, 255, 255, 0.03);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 10;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(15%) brightness(85%);
    z-index: 1;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.04);
    filter: grayscale(0%) brightness(100%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(10, 12, 16, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.video-wrapper:hover .video-play-btn {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.video-loaded {
    cursor: default;
}

.video-wrapper.video-loaded .video-play-btn,
.video-wrapper.video-loaded .video-thumbnail {
    display: none;
}

.video-fallback-link {
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background-color: rgba(10, 12, 16, 0.2);
    transition: var(--transition-fast);
}

.video-fallback-link a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.video-fallback-link a i {
    color: #ff0000;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.video-fallback-link a:hover {
    color: var(--primary);
}

.video-fallback-link a:hover i {
    transform: scale(1.1);
}

/* ==========================================================================
   Masterclasses & Awards Section
   ========================================================================== */
.mst-section {
    background-color: var(--bg-dark);
}

.mst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--primary);
}

.subsection-title i {
    font-size: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), rgba(197, 168, 128, 0.05));
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 24px;
}

.timeline-badge {
    position: absolute;
    left: -25px;
    top: 6px;
    color: var(--primary);
    font-size: 0.65rem;
    background-color: var(--bg-dark);
    transition: var(--transition-fast);
}

.timeline-content {
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-badge {
    color: var(--accent);
    transform: scale(1.3);
}

.timeline-item:hover .timeline-content {
    transform: translateX(4px);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.timeline-role {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 4px 0;
    color: var(--text-primary);
}

.timeline-venue {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Awards */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.award-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--transition-normal);
}

.award-card:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.award-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    min-width: 65px;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.award-body {
    flex-grow: 1;
}

.award-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.award-place {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--border-color);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.contact-detail-item:hover .contact-detail-icon {
    background-color: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    word-break: break-all;
}

a.contact-value:hover {
    color: var(--primary);
}

/* Form */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
}

.form-status {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

.form-status.success {
    color: #4cd964;
}

.form-status.error {
    color: #ff3b30;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Toast Notifications
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    padding: 16px 24px;
    min-width: 300px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    animation: slideInRight 0.3s ease forwards;
}

.toast.success {
    border-left-color: #4cd964;
}

.toast.error {
    border-left-color: #ff3b30;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    margin-left: 16px;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 24px;
        opacity: 0;
    }
}

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .bio-container {
        max-width: 100%;
    }
    
    .mst-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        order: 2;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Buttons */
    .btn-secondary {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .sch-item {
        grid-template-columns: 1fr;
    }
    
    .sch-date-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
    }
    
    .sch-info-box {
        padding: 20px;
        text-align: center;
    }
    
    .sch-role-venue {
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .gal-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}
