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

:root {
    /* Colombian-inspired color palette */
    --primary-color: #FFD700; /* Golden yellow */
    --secondary-color: #FF6B35; /* Vibrant orange */
    --accent-color: #1E3A8A; /* Deep blue */
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    --gradient-secondary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

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

.nav-logo h2 {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-logo .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 100svh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 30, 0.55) 0%, rgba(10, 14, 30, 0.35) 35%, rgba(10, 14, 30, 0.75) 100%),
        linear-gradient(135deg, rgba(15, 29, 69, 0.35), rgba(180, 50, 10, 0.35));
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Floating Musical Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="rgba(255,215,0,0.15)" stroke="rgba(255,215,0,0.4)" stroke-width="2"><path d="M 35 25 L 65 25 L 65 75 L 35 75 Z" fill="rgba(255,215,0,0.1)"/><path d="M 40 25 L 40 75 M 45 25 L 45 75 M 50 25 L 50 75 M 55 25 L 55 75 M 60 25 L 60 75" stroke="rgba(255,215,0,0.3)" stroke-width="1.5"/><rect x="20" y="20" width="15" height="60" rx="2"/><line x1="28" y1="25" x2="28" y2="75" stroke-width="1"/><rect x="65" y="25" width="15" height="50" rx="2"/><circle cx="70" cy="35" r="1.5"/><circle cx="75" cy="40" r="1.5"/><circle cx="70" cy="45" r="1.5"/><circle cx="75" cy="50" r="1.5"/><circle cx="70" cy="55" r="1.5"/><circle cx="75" cy="60" r="1.5"/></g></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g stroke="rgba(255,215,0,0.4)" stroke-width="2" fill="none"><rect x="40" y="15" width="12" height="70" rx="3" fill="rgba(255,215,0,0.15)"/><line x1="40" y1="25" x2="52" y2="25"/><line x1="40" y1="30" x2="52" y2="30"/><line x1="40" y1="35" x2="52" y2="35"/><line x1="40" y1="40" x2="52" y2="40"/><line x1="40" y1="45" x2="52" y2="45"/><line x1="40" y1="50" x2="52" y2="50"/><line x1="40" y1="55" x2="52" y2="55"/><line x1="40" y1="60" x2="52" y2="60"/><line x1="40" y1="65" x2="52" y2="65"/><line x1="40" y1="70" x2="52" y2="70"/><line x1="40" y1="75" x2="52" y2="75"/><path d="M 60 40 L 65 30 L 68 32 L 62 42" fill="rgba(255,215,0,0.2)"/><path d="M 65 30 L 50 35 M 65 30 L 52 38 M 65 30 L 54 41" stroke-width="1.5"/></g></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g stroke="rgba(255,215,0,0.4)" stroke-width="2" fill="rgba(255,215,0,0.15)"><path d="M 30 30 L 70 30 L 65 75 L 35 75 Z"/><ellipse cx="50" cy="30" rx="20" ry="8"/><ellipse cx="50" cy="75" rx="15" ry="5"/><path d="M 32 35 L 45 70 M 68 35 L 55 70 M 40 35 L 50 70 M 60 35 L 50 70" stroke="rgba(255,215,0,0.25)" stroke-width="1.5" fill="none"/></g></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g stroke="rgba(255,215,0,0.4)" stroke-width="2" fill="rgba(255,215,0,0.15)"><ellipse cx="50" cy="65" rx="40" ry="12"/><path d="M 30 60 C 30 35 70 35 70 60"/><path d="M 31 55 C 40 60 60 60 69 55" stroke-width="3" stroke="rgba(255,215,0,0.6)" fill="none"/><path d="M 34 45 C 45 48 55 48 66 45" stroke-width="1.5" stroke="rgba(255,215,0,0.3)" fill="none"/></g></svg>');
    background-repeat: no-repeat;
    background-size: 100px 100px, 80px 80px, 90px 90px, 110px 110px;
    background-position: 10% 20%, 80% 30%, 20% 70%, 85% 80%;
    animation: floatVallenato 30s infinite linear;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

/* Floating Contact Cards */
.floating-contacts {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.contact-bubble {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    animation: slideInRight 1s ease-out;
}

.contact-bubble:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.bubble-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-bubble .bubble-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.whatsapp-bubble .bubble-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.instagram-bubble .bubble-icon {
    background: linear-gradient(135deg, #F58529, #DD2A7B 55%, #8134AF);
}

.facebook-bubble .bubble-icon {
    background: linear-gradient(135deg, #1877F2, #0C5EBF);
}

.bubble-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bubble-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bubble-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bubble-link:hover {
    color: var(--primary-color);
}

/* Staggered animation delays */
.phone-bubble {
    animation-delay: 0.5s;
}

.whatsapp-bubble {
    animation-delay: 0.7s;
}

.instagram-bubble {
    animation-delay: 0.9s;
}

.facebook-bubble {
    animation-delay: 1.1s;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 10px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Music Section */
.music {
    padding: 6rem 0;
    background: var(--light-bg);
}

.music-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.music-player {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.player-header h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.playlist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.track:hover {
    background: var(--light-bg);
}

.track.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-left: 4px solid var(--primary-color);
}

.track-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.track-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.play-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.music-genres h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.genres-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.genre-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.genre-tag:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item .gallery-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Videos Section */
.videos {
    padding: 6rem 0;
    background: var(--text-dark);
}

.videos .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.videos .section-subtitle {
    color: #9CA3AF;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-slider {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.video-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.video-slide {
    flex: 0 0 100%;
    padding: 15px;
    box-sizing: border-box;
}

.featured-video {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: var(--shadow-medium);
}

.video-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.video-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-slider-arrow-prev {
    left: -10px;
}

.video-slider-arrow-next {
    right: -10px;
}

.video-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.video-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.video-slider-dot.active {
    background: var(--gradient-primary, #fff);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-light);
}

.contact-method a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background: var(--accent-color);
    text-align: center;
}

.social-media h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9CA3AF;
}

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

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

@keyframes floatVallenato {
    0% {
        background-position: 10% 20%, 80% 30%, 20% 70%, 85% 80%;
        opacity: 1;
    }
    20% {
        background-position: 15% 15%, 85% 25%, 25% 75%, 90% 85%;
        opacity: 0.9;
    }
    40% {
        background-position: 20% 25%, 75% 35%, 15% 65%, 80% 75%;
        opacity: 1;
    }
    60% {
        background-position: 25% 30%, 70% 40%, 30% 60%, 75% 70%;
        opacity: 0.8;
    }
    80% {
        background-position: 18% 35%, 78% 45%, 22% 55%, 88% 65%;
        opacity: 0.95;
    }
    100% {
        background-position: 10% 20%, 80% 30%, 20% 70%, 85% 80%;
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .music-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .floating-contacts {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }
    
    .contact-bubble {
        min-width: 0;
        flex: 1;
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .bubble-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .bubble-content {
        align-items: center;
    }
    
    .bubble-label {
        font-size: 0.65rem;
    }
    
    .bubble-link {
        font-size: 0.7rem;
        word-break: break-word;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        column-count: 1;
    }
}

/* ==========================================================================
   Mobile refinements — readability, measure, and scroll length
   Loaded last so these win over the earlier breakpoint rules.
   ========================================================================== */

/* Never let an image with width/height attributes get squashed. */
img {
    max-width: 100%;
    height: auto;
}

/* Collapsible long-form copy (progressive enhancement: no JS = full text). */
.read-more-toggle {
    display: none;
    margin: 0.25rem auto 0;
    padding: 10px 22px;
    min-height: 44px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    background: transparent;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* --- Rhythm: the page was ~6rem of padding per section, which is what
       made the scroll feel endless on a phone. --- */
    .about,
    .services,
    .music,
    .gallery,
    .videos,
    .contact {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* --- Readability: long centred paragraphs are the hardest thing to read
       on a narrow screen. Headings stay centred, body copy goes left. --- */
    .about-content {
        text-align: left;
        gap: 2rem;
    }

    /* Lead with the photo on mobile — a wall of text is a bad first thing
       to meet when scrolling. Desktop keeps text-left / image-right. */
    .about-image {
        order: -1;
    }

    .about-text h3 {
        text-align: center;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 60ch;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    /* --- Hero: drop the decorative instruments entirely on small screens and
       let the video and the headline carry it. --- */
    .hero::after {
        display: none;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.5;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.75rem;
    }

    /* --- Contact bubbles were at 10-11px, below the readable floor. --- */
    .floating-contacts {
        margin-top: 1.5rem;
        gap: 8px;
    }

    .contact-bubble {
        padding: 0.6rem 0.4rem;
        min-height: 60px;
    }

    .bubble-label {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
    }

    .bubble-link {
        font-size: 0.85rem;
        line-height: 1.25;
    }

    /* --- Progressive disclosure for the About copy. --- */
    .read-more-toggle {
        display: block;
    }

    .about-text.is-collapsed .about-more {
        display: none;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .services-grid,
    .gallery-grid {
        gap: 1rem;
    }

    /* --- Keep the last section clear of the floating WhatsApp button. --- */
    .footer {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.05rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Four bubbles across a 375px screen is too tight — go two-up. */
    .contact-bubble {
        flex: 0 0 calc(50% - 4px);
    }

    /* A single column of portrait photos made the gallery ~4000px tall,
       a third of the whole page. Two columns keeps it browsable. */
    .gallery-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .gallery-item {
        margin-bottom: 10px;
    }
}

/* Respect the user's motion preference. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Circular 3D gallery ("orbit")
   A ring of cards laid out in 3D, turned by drag, arrows and keys, and
   drifting on its own. Applied to the photo gallery and, in a variant tuned
   for playback, to the live-show videos.

   Progressive enhancement: these classes are only ever added by script.js on
   wide viewports when the visitor has not asked for reduced motion. Without
   JS — or on a phone — the original grid and slider are what ship.
   ========================================================================== */

.orbit-section {
    padding: 0;
}

.orbit-section > .container {
    display: none;
}

/* One screenful, in normal flow: the section scrolls past like any other and
   the ring turns independently of it. */
.orbit-track {
    position: relative;
}

.orbit-sticky {
    position: relative;
    min-height: 100vh;
    /* Small-viewport units keep the stage off the mobile browser chrome;
       ignored where unsupported. */
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.orbit-sticky .section-header {
    margin-bottom: 0.5rem;
    flex: 0 0 auto;
    /* The front card is the nearest thing in the 3D scene; keep the title
       above it even when it grows into the header's line. */
    position: relative;
    z-index: 3;
}

.orbit-sticky .section-subtitle {
    margin-bottom: 0.25rem;
}

.orbit-hint {
    flex: 0 0 auto;
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.85;
}

.videos .orbit-hint {
    color: #9CA3AF;
}

/* The 3D scene. Depth is generous so the front card grows only a little as
   it comes toward the camera — a shallower perspective distorts the edges. */
.orbit-stage {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    perspective: 2400px;
    cursor: grab;
    touch-action: pan-y;
    outline: none;
}

.orbit-stage.is-dragging {
    cursor: grabbing;
}

.orbit-stage:focus-visible {
    box-shadow: inset 0 0 0 2px var(--accent-color);
    border-radius: 15px;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.orbit-cell {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--orbit-card-w, 300px);
    height: var(--orbit-card-h, 400px);
    margin-left: calc(var(--orbit-card-w, 300px) / -2);
    margin-top: calc(var(--orbit-card-h, 400px) / -2);
    transition: opacity 0.3s linear;
    will-change: transform, opacity;
    /* Cards face outward from the ring, so the far half would otherwise show
       as mirrored photographs with backwards captions. */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* The card itself is the original .gallery-item / .video-slide, re-homed. */
.orbit-cell .gallery-item,
.orbit-cell .video-slide {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    flex: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium), 0 30px 60px rgba(0, 0, 0, 0.25);
    background: rgba(0, 0, 0, 0.2);
}

/* The flat grid scales items on hover; inside the ring that fights the 3D
   transform, so the lift moves to the cell instead. */
.orbit-cell .gallery-item,
.orbit-cell .gallery-item:hover {
    transform: none;
}

.orbit-cell .gallery-img,
.orbit-cell .featured-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    box-shadow: none;
}

.orbit-cell .gallery-item {
    cursor: zoom-in;
}

.orbit-caption {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 1.1rem 1.25rem;
    color: #fff;
    pointer-events: none;
}

/* Photos caption sits at the foot of the card... */
.orbit-caption-bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

/* ...video captions sit at the head of it, clear of the native controls. */
.orbit-caption-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.orbit-caption h3 {
    font-family: var(--font-secondary, inherit);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.orbit-caption p {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Step controls for either ring: the drag is not self-evident, on the videos
   because every card is a player and on the photographs because the drift
   reads as decoration. */
.orbit-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 4px;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.orbit-arrow:hover {
    background: var(--accent-color, rgba(0, 0, 0, 0.7));
    transform: translateY(-50%) scale(1.08);
}

.orbit-arrow:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.orbit-arrow-prev { left: max(1rem, 2vw); }
.orbit-arrow-next { right: max(1rem, 2vw); }

/* The gallery sits on white, so its arrows invert. */
.gallery .orbit-arrow {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-medium);
}

.gallery .orbit-arrow:hover {
    color: #fff;
    background: var(--accent-color);
}

@media (max-width: 700px) {
    .orbit-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
}

/* Dots for the video ring — same language as the slider they replace. */
.orbit-dots {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.orbit-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery .orbit-dot {
    background: rgba(0, 0, 0, 0.15);
}

.orbit-dot.active {
    background: var(--accent-color, #fff);
    transform: scale(1.3);
}

/* Short viewports: the ring needs the room more than the copy does. */
@media (max-height: 720px) {
    .orbit-sticky {
        padding-top: 4rem;
    }

    .orbit-sticky .section-subtitle,
    .orbit-hint {
        display: none;
    }
}

/* --- Phones and narrow panes -------------------------------------------- */
@media (max-width: 700px) {
    .orbit-sticky {
        padding: 4.5rem 0 1.25rem;
    }

    .orbit-sticky .section-header {
        margin-bottom: 0.25rem;
    }

    .orbit-hint {
        margin-bottom: 0.25rem;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .orbit-caption {
        padding: 0.85rem 0.95rem;
    }

    .orbit-caption h3 {
        font-size: 1rem;
    }

    .orbit-caption p {
        font-size: 0.78rem;
    }

    .orbit-dots {
        margin-top: 0.75rem;
    }
}
