@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --suay-gold: #C9A227;
    --suay-gold-light: #D4B84A;
    --suay-gold-dark: #A08220;
    --suay-beige: #F5F1E8;
    --suay-cream: #FAF8F3;
    --suay-dark: #2C2416;
    --suay-brown: #5C4D3C;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--suay-cream); color: var(--suay-dark); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

/* ── Navigation ── */
nav {
    position: fixed; top: 0; width: 100%;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.4s ease; background: transparent;
}
nav.scrolled {
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 36, 22, 0.08);
    padding: 12px 5%;
}
.logo { height: 50px; transition: all 0.3s ease; }
nav.scrolled .logo { height: 40px; }

.nav-links { display: flex; gap: 22px; align-items: center; list-style: none; flex-wrap: wrap; }
.nav-links a {
    text-decoration: none; color: var(--white);
    font-weight: 400; font-size: 0.78rem;
    letter-spacing: 1px; transition: color 0.3s ease;
    position: relative; text-transform: uppercase;
}
nav.scrolled .nav-links a { color: var(--suay-dark); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 1px; background: var(--suay-gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active-section::after { width: 100%; }

.lang-selector { display: flex; gap: 8px; margin-left: 15px; }
.lang-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.4);
    color: var(--white); padding: 5px 10px; cursor: pointer;
    font-size: 0.73rem; transition: all 0.3s ease;
    border-radius: 20px; font-weight: 500;
}
nav.scrolled .lang-btn { color: var(--suay-dark); border-color: var(--suay-gold); }
.lang-btn:hover, .lang-btn.active { background: var(--suay-gold); color: var(--white); border-color: var(--suay-gold); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: all 0.3s ease; }
nav.scrolled .hamburger span { background: var(--suay-dark); }

/* ── Hero ── */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(44,36,22,0.5), rgba(44,36,22,0.3)), url('../images/fonsnou.png') center/cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(201,162,39,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); padding: 0 20px; max-width: 900px; animation: fadeInUp 1.2s ease; }
.hero-logo { width: 200px; margin-bottom: 30px; filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; margin-bottom: 20px; color: var(--suay-gold-light); font-weight: 400; }
.hero-title { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 300; margin-bottom: 30px; line-height: 1.2; letter-spacing: 2px; }
.hero-text { font-size: 1.1rem; font-weight: 300; margin-bottom: 40px; opacity: 0.95; line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-primary {
    display: inline-block; padding: 16px 45px;
    background: var(--suay-gold); color: var(--white);
    text-decoration: none; border-radius: 50px;
    font-weight: 500; letter-spacing: 2px; transition: all 0.4s ease;
    border: 2px solid var(--suay-gold); text-transform: uppercase; font-size: 0.8rem;
}
.btn-primary:hover { background: transparent; color: var(--suay-gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,162,39,0.3); }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-indicator svg { width: 30px; height: 30px; fill: var(--suay-gold); }

/* ── Sections General ── */
section { padding: 100px 5%; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--suay-dark);
    margin-bottom: 15px; position: relative; display: inline-block; font-weight: 400;
}
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 2px; background: var(--suay-gold);
}
.section-subtitle { color: var(--suay-brown); font-weight: 300; font-size: 1.1rem; margin-top: 20px; font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ── About ── */
.about { background: var(--suay-cream); }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(44,36,22,0.15); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image::before {
    content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
    border: 2px solid var(--suay-gold); border-radius: 20px; z-index: -1; opacity: 0.6;
}
.about-content h3 { font-size: 2rem; margin-bottom: 20px; color: var(--suay-gold-dark); font-weight: 400; }
.about-content p { margin-bottom: 20px; line-height: 1.9; color: var(--suay-brown); font-weight: 300; }
.signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--suay-gold); margin-top: 30px; }
.members { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(201,162,39,0.2); }
.member h4 { color: var(--suay-gold-dark); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 8px; }
.member p { font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ── Videos ── */
.videos { background: linear-gradient(to bottom, var(--suay-beige), var(--suay-cream)); }
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.video-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 40px rgba(44,36,22,0.08); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.video-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(44,36,22,0.15); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--suay-dark); border-radius: 15px 15px 0 0; }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover; }
.video-info { padding: 25px; text-align: center; }
.video-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 10px; color: var(--suay-dark); }
.video-info p { color: var(--suay-brown); font-size: 0.9rem; line-height: 1.5; }

/* ── Bodas ── */
.bodas { background: var(--suay-beige); }
.bodas-intro-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 70px; }
.bodas-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(44,36,22,0.15); aspect-ratio: 4/3; }
.bodas-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bodas-image::before {
    content: ''; position: absolute; top: -20px; right: -20px; left: 20px; bottom: 20px;
    border: 2px solid var(--suay-gold); border-radius: 20px; z-index: -1; opacity: 0.6;
}
.bodas-intro-text h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--suay-gold-dark); font-weight: 400; }
.bodas-intro-text p { margin-bottom: 16px; line-height: 1.9; color: var(--suay-brown); font-weight: 300; }

.ceremony-types { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 0 auto 60px; }
.ceremony-card {
    background: var(--white); padding: 35px 30px; border-radius: 15px;
    box-shadow: 0 5px 30px rgba(44,36,22,0.08);
    border-top: 3px solid var(--suay-gold); transition: transform 0.3s ease;
}
.ceremony-card:hover { transform: translateY(-5px); }
.ceremony-icon { font-size: 2rem; margin-bottom: 15px; }
.ceremony-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 12px; color: var(--suay-dark); font-weight: 400; }
.ceremony-card p { color: var(--suay-brown); font-size: 0.93rem; line-height: 1.7; }

.proposal-section { max-width: 900px; margin: 0 auto; }
.proposal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; text-align: center; color: var(--suay-dark); margin-bottom: 40px; font-weight: 400; }
.proposal-title span { color: var(--suay-gold); }
.proposal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }
.proposal-item { text-align: center; padding: 30px 20px; background: var(--white); border-radius: 15px; box-shadow: 0 5px 20px rgba(44,36,22,0.07); }
.proposal-item .proposal-icon { width: 55px; height: 55px; margin: 0 auto 15px; background: linear-gradient(135deg, var(--suay-gold), var(--suay-gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.proposal-item h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--suay-dark); margin-bottom: 10px; font-weight: 400; }
.proposal-item p { color: var(--suay-brown); font-size: 0.88rem; line-height: 1.6; }
.bodas-cta { text-align: center; }

/* ── Eventos ── */
.events { background: var(--suay-cream); }
.events-intro { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.events-intro p { color: var(--suay-brown); line-height: 1.9; margin-bottom: 15px; font-weight: 300; }
.events-subtitle-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--suay-brown); font-style: italic; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto 60px; }
.event-card {
    background: var(--white); padding: 35px 30px; border-radius: 15px;
    box-shadow: 0 5px 30px rgba(44,36,22,0.08);
    display: flex; gap: 20px; align-items: flex-start;
    border-left: 3px solid var(--suay-gold); transition: transform 0.3s ease;
}
.event-card:hover { transform: translateY(-4px); }
.event-card-icon { font-size: 2rem; flex-shrink: 0; width: 50px; text-align: center; }
.event-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--suay-dark); font-weight: 400; }
.event-card p { color: var(--suay-brown); font-size: 0.9rem; line-height: 1.7; }
.events-proposal { max-width: 800px; margin: 0 auto 50px; background: var(--suay-beige); padding: 40px; border-radius: 20px; border: 1px solid rgba(201,162,39,0.25); }
.events-proposal p { color: var(--suay-brown); line-height: 1.9; font-weight: 300; }
.events-proposal strong { color: var(--suay-gold-dark); }
.events-cta { text-align: center; }

/* ── Services (Que Ofrecemos) ── */
.services { background: var(--suay-beige); padding: 100px 5%; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 30px rgba(44,36,22,0.08); transition: transform 0.3s ease; border-bottom: 3px solid var(--suay-gold); }
.service-card:hover { transform: translateY(-5px); }
.service-icon { width: 70px; height: 70px; margin: 0 auto 20px; }
.service-icon svg { width: 100%; height: 100%; stroke: var(--suay-gold); }
.service-card:hover .service-icon svg { transform: scale(1.1); transition: transform 0.3s ease; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 15px; color: var(--suay-dark); }
.service-card p { color: var(--suay-brown); font-size: 0.95rem; line-height: 1.7; }

/* ── Multimedia ── */
.multimedia { background: var(--suay-dark); color: var(--white); }
.multimedia .section-title { color: var(--white); }
.multimedia .section-subtitle { color: var(--suay-gold-light); }
.multimedia-intro { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.multimedia-intro p { color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 12px; font-weight: 300; }
.multimedia-intro p strong { color: var(--suay-gold-light); font-weight: 500; }
.multimedia-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto 60px; }

/* Photo Slider */
.photo-slider-container {
    background: rgba(255,255,255,0.05); border-radius: 15px; overflow: hidden;
    border: 1px solid rgba(201,162,39,0.25); position: relative;
}
.slider-wrapper { position: relative; height: 280px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-controls { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: flex-end; padding: 15px; background: linear-gradient(transparent, rgba(44,36,22,0.6)); }
.slider-btn { background: rgba(201,162,39,0.7); border: none; color: var(--white); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: background 0.3s ease; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--suay-gold); }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s ease; border: none; }
.slider-dot.active { background: var(--suay-gold); }
.slider-caption { padding: 15px 20px; }
.slider-caption p { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* YouTube Card */
.youtube-card {
    background: rgba(255,255,255,0.05); border-radius: 15px;
    border: 1px solid rgba(201,162,39,0.25);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 40px 30px; text-align: center;
    transition: border-color 0.3s ease;
}
.youtube-card:hover { border-color: var(--suay-gold); }
.youtube-icon { font-size: 3.5rem; margin-bottom: 20px; }
.youtube-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 12px; font-weight: 400; }
.youtube-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; }
.btn-youtube {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 35px; background: #FF0000; color: var(--white);
    text-decoration: none; border-radius: 50px; font-weight: 500;
    font-size: 0.85rem; letter-spacing: 1px; transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,0,0,0.3); }

/* ── Playlist (in Multimedia & Repertorio) ── */
.playlist-section { padding-top: 60px; border-top: 1px solid rgba(201,162,39,0.2); margin-top: 20px; }
.playlist-section .section-header { margin-bottom: 40px; }
.playlist-container { max-width: 800px; margin: 0 auto; background: rgba(255,255,255,0.05); border-radius: 20px; padding: 40px; backdrop-filter: blur(10px); border: 1px solid rgba(201,162,39,0.2); }
.playlist-item { display: flex; align-items: center; padding: 18px 25px; margin-bottom: 12px; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent; background: rgba(255,255,255,0.02); }
.playlist-item:hover { background: rgba(201,162,39,0.1); border-color: var(--suay-gold); }
.playlist-item.active { background: rgba(201,162,39,0.2); border-color: var(--suay-gold); }
.playlist-number { width: 45px; height: 45px; border-radius: 50%; background: var(--suay-gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; margin-right: 20px; flex-shrink: 0; font-size: 0.9rem; }
.playlist-item.active .playlist-number { background: var(--white); color: var(--suay-gold); }
.playlist-info { flex: 1; }
.playlist-info h4 { font-size: 1.05rem; margin-bottom: 5px; font-weight: 500; letter-spacing: 0.5px; color: var(--white); }
.playlist-info span { font-size: 0.85rem; color: var(--suay-gold-light); opacity: 0.9; }
.playlist-duration { color: var(--suay-gold); font-weight: 500; font-size: 0.9rem; }

/* ── Audio Player (Sticky) ── */
.audio-player {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(44,36,22,0.98); backdrop-filter: blur(20px);
    border-top: 2px solid var(--suay-gold); padding: 20px 5%;
    display: flex; align-items: center; gap: 30px;
    z-index: 999; transform: translateY(100%); transition: transform 0.4s ease;
}
.audio-player.active { transform: translateY(0); }
.player-close { position: absolute; top: 10px; right: 15px; background: none; border: none; color: var(--suay-gold-light); font-size: 1.8rem; cursor: pointer; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; line-height: 1; padding: 0; transition: color 0.3s ease; }
.player-close:hover { color: var(--white); }
.player-info { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 200px; }
.player-thumb { width: 55px; height: 55px; border-radius: 10px; background: linear-gradient(135deg, var(--suay-gold), var(--suay-gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); flex-shrink: 0; }
.player-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; font-weight: 500; }
.player-text span { color: var(--suay-gold-light); font-size: 0.8rem; }
.player-controls { display: flex; align-items: center; gap: 20px; }
.control-btn { background: none; border: none; color: var(--white); cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease; font-size: 1.2rem; }
.control-btn:hover { background: rgba(201,162,39,0.2); color: var(--suay-gold); }
.control-btn.play-pause { width: 55px; height: 55px; background: var(--suay-gold); color: var(--white); font-size: 1.4rem; }
.control-btn.play-pause:hover { background: var(--suay-gold-light); transform: scale(1.05); }
.progress-container { flex: 2; display: flex; align-items: center; gap: 15px; min-width: 150px; }
.time { color: var(--suay-gold-light); font-size: 0.8rem; min-width: 40px; font-family: 'Montserrat', monospace; }
.progress-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.15); border-radius: 3px; cursor: pointer; position: relative; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--suay-gold), var(--suay-gold-light)); width: 0%; transition: width 0.1s linear; border-radius: 3px; }
.volume-container { display: flex; align-items: center; gap: 10px; }
.volume-slider { width: 100px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; appearance: none; }
.volume-slider::-webkit-slider-thumb { appearance: none; width: 14px; height: 14px; background: var(--suay-gold); border-radius: 50%; cursor: pointer; }

/* ── Contact ── */
.contact { background: linear-gradient(135deg, var(--suay-cream) 0%, var(--suay-beige) 100%); }
.contact-container { max-width: 750px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 20px 60px rgba(44,36,22,0.1); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--suay-dark); font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 15px; border: 1px solid #e8e3d9;
    border-radius: 10px; font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem; transition: all 0.3s ease;
    background: var(--suay-cream); color: var(--suay-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--suay-gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { width: 100%; padding: 18px; background: var(--suay-gold); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.4s ease; text-transform: uppercase; letter-spacing: 2px; font-family: 'Montserrat', sans-serif; }
.btn-submit:hover { background: var(--suay-gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.3); }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 15px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--suay-gold-dark); margin-bottom: 10px; }
.form-success p { color: var(--suay-brown); }

/* ── Footer ── */
footer { background: var(--suay-dark); color: var(--white); text-align: center; padding: 50px 5%; }
.footer-logo { width: 120px; margin-bottom: 25px; }
.footer-info { margin-bottom: 30px; }
.footer-info p { margin: 8px 0; opacity: 0.9; font-weight: 300; }
.footer-info a { color: var(--suay-gold-light); text-decoration: none; transition: color 0.3s ease; }
.footer-info a:hover { color: var(--suay-gold); }
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.social-links a { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--suay-gold); display: flex; align-items: center; justify-content: center; color: var(--suay-gold); text-decoration: none; transition: all 0.3s ease; }
.social-links a svg { stroke: var(--suay-gold); transition: all 0.3s ease; }
.social-links a:hover { background: var(--suay-gold); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(201,162,39,0.3); }
.social-links a:hover svg { stroke: var(--white); }
.copyright { opacity: 0.7; font-size: 0.85rem; margin-top: 20px; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(44,36,22,0.98); z-index: 2000; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: var(--white); font-size: 3rem; cursor: pointer; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s ease; font-weight: 300; }
.lightbox-close:hover { background: rgba(201,162,39,0.2); }

/* ── Repertorio Page ── */
.repertorio-page-hero {
    height: 55vh; min-height: 400px;
    background: linear-gradient(135deg, rgba(44,36,22,0.75), rgba(44,36,22,0.5)), url('../images/ImatgeFons.jfif') center/cover;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white);
}
.repertorio-page-hero h1 { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 300; letter-spacing: 2px; margin-bottom: 15px; }
.repertorio-page-hero p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--suay-gold-light); }
.repertorio-section { background: var(--suay-dark); color: var(--white); padding: 100px 5%; }
.repertorio-section .section-title { color: var(--white); }
.repertorio-section .section-subtitle { color: var(--suay-gold-light); }
.back-to-home { display: inline-flex; align-items: center; gap: 8px; color: var(--suay-gold-light); text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease; margin-bottom: 40px; }
.back-to-home:hover { color: var(--suay-gold); }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .multimedia-media-grid { grid-template-columns: 1fr; max-width: 600px; }
    .youtube-card { min-height: 220px; }
}
@media (max-width: 968px) {
    .about-container, .bodas-intro-container { grid-template-columns: 1fr; }
    .about-image, .bodas-image { order: -1; max-width: 500px; margin: 0 auto; }
    .events-grid, .ceremony-types { grid-template-columns: 1fr; }
    .proposal-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .audio-player { flex-wrap: wrap; gap: 15px; padding: 15px; }
    .progress-container { order: 3; width: 100%; }
    .volume-container { display: none; }
    .videos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%;
        height: 100vh; background: rgba(44,36,22,0.98);
        flex-direction: column; justify-content: center;
        transition: right 0.4s ease; margin: 0; padding: 50px 0; gap: 5px;
    }
    nav.scrolled .nav-links { background: rgba(250,248,243,0.98); }
    .nav-links.active { right: 0; }
    nav.scrolled .nav-links a { color: var(--suay-dark); }
    .nav-links a { color: var(--white); font-size: 1rem; padding: 12px 0; }
    .lang-selector { margin: 25px 0 0 0; flex-direction: row; }
    section { padding: 70px 5%; }
    .contact-container { padding: 30px 20px; }
    .playlist-container { padding: 20px 15px; }
    .members { grid-template-columns: 1fr; gap: 20px; }
    .hero-logo { width: 150px; }
    .proposal-grid { grid-template-columns: 1fr; }
}
