/* =====================
   Variables & Reset
   ===================== */
:root {
    --primary-color: #0f2744;
    --secondary-color: #d4af37;
    --accent-color: #c9a961;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =====================
   Navigation
   ===================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 39, 68, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    transition: var(--transition);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo-svg {
    height: 65px;
    width: auto;
}

.logo-text-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    text-anchor: middle;
}

.logo-text-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 500;
    fill: #6bb6ff;
    letter-spacing: 3px;
    text-anchor: middle;
}

.logo-line {
    stroke: var(--secondary-color);
    stroke-width: 0.5;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--gold-color);
}

.nav-instagram svg {
    vertical-align: middle;
    transition: var(--transition);
    fill: rgba(255, 255, 255, 0.9);
}

.nav-instagram:hover svg {
    transform: scale(1.1);
    fill: var(--gold-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

/* =====================
   Hero Section
   ===================== */
.hero {
    height: 120vh;
    background: linear-gradient(135deg, #0a1929 0%, #0f2744 50%, #1a3a5c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -45%);
    z-index: 0;
    object-fit: cover;
}

.hero-crop-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.hero-crop-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-logo {
    width: clamp(300px, 50vw, 500px);
    height: auto;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out;
}

.hero-logo-text-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 300;
    fill: var(--secondary-color);
    letter-spacing: 8px;
    text-anchor: middle;
}

.hero-logo-text-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    fill: rgba(255, 255, 255, 0.9);
    letter-spacing: 10px;
    text-anchor: middle;
}

.hero-logo-line {
    stroke: var(--secondary-color);
    stroke-width: 1.5;
    opacity: 0.8;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 8px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 600px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 25px;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 20px; }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

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

/* =====================
   Section Styles
   ===================== */
section {
    padding: 40px 0;
}

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

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* =====================
   About Section
   ===================== */
.about {
    background: var(--bg-light);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--light-text);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--light-text);
}

/* =====================
   Repertoire Section
   ===================== */
.repertoire {
    background: var(--bg-white);
}

.repertoire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.repertoire-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.repertoire-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.repertoire-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.repertoire-card ul {
    list-style: none;
}

.repertoire-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--light-text);
    font-size: 15px;
}

.repertoire-card li:last-child {
    border-bottom: none;
}

.repertoire-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--primary-color);
    border-left: none;
}

.repertoire-more h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.repertoire-more p {
    color: var(--primary-color);
    opacity: 0.9;
}

.repertoire-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
    font-size: 15px;
}

/* =====================
   Media Section
   ===================== */
.media {
    background: var(--bg-light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.media-item {
    aspect-ratio: 3/4;
    background: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    pointer-events: none;
}

.placeholder-content span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-icon {
    font-size: 64px !important;
    color: var(--secondary-color);
}

/* Lightbox overlay for media */
.media-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.media-item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.media-note {
    text-align: center;
    font-size: 14px;
    color: var(--light-text);
    font-style: italic;
}

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

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-centered {
    max-width: 900px;
    background: linear-gradient(135deg, #0f2744 0%, #0a1929 100%);
    padding: 60px 70px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--bg-light);
}

.contact-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.contact-logo-text-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    fill: var(--secondary-color);
    letter-spacing: 3px;
    text-anchor: middle;
}

.contact-logo-text-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    fill: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-anchor: middle;
}

.contact-logo-line {
    stroke: var(--secondary-color);
    stroke-width: 1;
    opacity: 0.6;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.contact-left {
    text-align: left;
}

.contact-right {
    text-align: left;
}

.contact-divider {
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
}

.contact-subtitle {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.contact-centered .contact-list {
    text-align: left;
    display: block;
}

.contact-centered .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    background: transparent;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
}

.contact-info h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.contact-info > p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.contact-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.contact-details {
    margin-top: 30px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    color: var(--secondary-color);
    min-width: 24px;
}

.email-icon svg,
.phone-icon svg,
.instagram-icon svg {
    vertical-align: middle;
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    transition: var(--transition);
    font-size: 16px;
    letter-spacing: 0.5px;
}

.contact-item a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    background: var(--bg-white);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.submit-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* =====================
   Footer
   ===================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

/* =====================
   Responsive Design
   ===================== */

/* Tablettes / iPad */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .logo-svg {
        height: 55px;
    }

    .hero-logo {
        width: 50vw;
    }

    .hero-logo-text-main {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .hero-logo-text-sub {
        font-size: 16px;
        letter-spacing: 8px;
    }

    .hero-video {
        transform: translate(-50%, -50%) scale(0.8);
        object-fit: cover;
    }

    .hero-crop-left,
    .hero-crop-right {
        width: 0;
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 39, 68, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    section {
        padding: 40px 0;
    }

    .hero {
        height: 100vh;
    }

    .hero-title {
        letter-spacing: 4px;
    }

    .hero-logo {
        width: 80vw;
    }

    .hero-video {
        transform: translate(-50%, -50%);
        min-width: auto;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-crop-left,
    .hero-crop-right {
        display: none;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    }

    .contact-centered {
        padding: 40px 30px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-logo {
        width: 90vw;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .repertoire-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .contact-centered {
        padding: 30px 20px;
    }

    .contact-logo {
        height: 50px;
    }

    .contact-item a {
        font-size: 14px;
        word-break: break-word;
    }
}

/* =====================
   Lightbox
   ===================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

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