:root {
    --midnight-blue: #0a0e1a;
    --champagne-gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --ivory: #f5f5f5;
    --soft-white: #ffffff;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--midnight-blue);
    color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.premium-font {
    font-family: 'Playfair Display', serif;
    color: var(--champagne-gold);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.about-content {
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Service Area */
.service-area {
    padding: 40px;
    text-align: center;
}

.service-area-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-area h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-area p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--champagne-gold);
}

.service-card i {
    font-size: 3rem;
    color: var(--champagne-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Gallery Mosaic */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--champagne-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--champagne-gold);
}

/* Calendar styling */
.calendar-container {
    width: 100%;
    padding: 30px;
    background: rgba(10, 14, 26, 0.4);
}

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

.calendar-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--champagne-gold);
}

.btn-nav {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--champagne-gold);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--champagne-gold);
    color: var(--midnight-blue);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-name {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--champagne-gold);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.calendar-day {
    min-height: 100px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.calendar-day.empty {
    background: none;
    border: none;
}

.calendar-day.today {
    border-color: var(--champagne-gold);
    box-shadow: inset 0 0 10px var(--gold-glow);
}

.day-number {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.6;
}

.event-dot {
    display: block;
    padding: 4px 8px;
    margin-top: 5px;
    font-size: 0.75rem;
    background: var(--gold-glow);
    color: var(--champagne-gold);
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 3px solid var(--champagne-gold);
}

@media (max-width: 768px) {
    .calendar-day {
        min-height: 80px;
    }

    .day-name {
        font-size: 0.7rem;
    }

    .event-dot {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--ivory);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--champagne-gold);
}

/* Repertoire */
.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.repertoire-card {
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.repertoire-card:hover {
    background: var(--gold-glow);
    border-color: var(--champagne-gold);
}

.repertoire-card i {
    font-size: 2rem;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

/* Video Section */
.video-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
}

.featured-video {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

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

.video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.video-list::-webkit-scrollbar {
    width: 5px;
}

.video-list::-webkit-scrollbar-thumb {
    background: var(--champagne-gold);
    border-radius: 10px;
}

.video-item {
    cursor: pointer;
    display: flex;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.video-item:hover,
.video-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--champagne-gold);
}

.video-thumb {
    width: 100px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.video-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--ivory);
}

@media (max-width: 992px) {
    .video-gallery {
        grid-template-columns: 1fr;
    }

    .video-list {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
    }

    .video-item {
        min-width: 250px;
    }
}

.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f7e08a 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative Gold Border */
.gold-border {
    border: 1px solid var(--champagne-gold);
    position: relative;
    padding: 20px;
}

.gold-border::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--gold-glow);
    pointer-events: none;
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--champagne-gold);
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory);
    padding: 4px 8px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--champagne-gold);
    color: var(--midnight-blue);
    border-color: var(--champagne-gold);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: var(--champagne-gold);
    color: var(--midnight-blue);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

/* Repertoire Modal */
.repertoire-overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.repertoire-overlay-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--midnight-blue);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border-radius: 12px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--champagne-gold);
    font-size: 2rem;
    cursor: pointer;
}

.song-list {
    list-style: none;
    margin-top: 20px;
}

.song-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 14, 26, 0.7), rgba(10, 14, 26, 0.7)),
        url('https://scontent.ftgm1-1.fna.fbcdn.net/v/t39.30808-6/545043360_122178786968476236_2944691170059966573_n.jpg?stp=dst-jpg_s960x960_tt6&_nc_cat=109&ccb=1-7&_nc_sid=2a1932&_nc_ohc=l7iIM_LarnYQ7kNvwEPs-4a&_nc_oc=Adm8-dTLaKsz_SC4XjYs70Vs0rEzOze-IU3iEde2lqEl55PaqbJYt39eo-cBd1hFwlE&_nc_zt=23&_nc_ht=scontent.ftgm1-1.fna&_nc_gid=4IpmmFC38Ap9PKW1f5b_mA&_nc_ss=8&oh=00_AfyfMMNAsK92-lr3eNg0xFwYcD_7kDSRMmD4LmdeUXOrag&oe=69AF5048');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--ivory);
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header .dash {
    width: 60px;
    height: 2px;
    background: var(--champagne-gold);
    margin: 20px auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 2px solid var(--champagne-gold);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--champagne-gold);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

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

#lightbox-caption {
    margin-top: 20px;
    color: var(--champagne-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 30px;
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--ivory);
    opacity: 0.9;
}
