/* ==========================================
   NAOMI ALMONTE MUSIC - OFFICIAL BRAND DESIGN
   Primary Orange: #ca6738 | Dark Green: #342f1e
   ========================================== */

/* CUSTOM FONT DECLARATIONS */
@font-face {
    font-family: 'Barox';
    src: url('assets/Barox-DemoVersion-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Custom';
    src: url('assets/BebasNeue-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Custom';
    src: url('assets/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-dark: #342f1e;
    --bg-surface: #272316;
    --bg-card: #2c271a;
    --bg-card-hover: #383222;
    --bg-darker: #1c1910;
    
    --orange-primary: #ca6738;
    --orange-light: #e48252;
    --orange-dark: #a34e24;
    --orange-gradient: linear-gradient(135deg, #e47d4c 0%, #ca6738 50%, #9e461b 100%);
    --orange-border: rgba(202, 103, 56, 0.3);
    --orange-border-hover: rgba(202, 103, 56, 0.85);
    
    --text-white: #ffffff;
    --text-muted: #c4beaf;
    --text-dim: #8c8574;
    
    --font-serif-title: 'Barox', 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-button: 'Bebas Neue Custom', 'Bebas Neue', sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* RESET & BASE - STRICT HORIZONTAL LOCK */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* CREATIVE SCROLL ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: scale(0.96) translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* TYPOGRAPHY UTILITIES */
h1, h2, h3, h4 {
    font-family: var(--font-serif-title);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.orange-title {
    font-family: var(--font-serif-title);
    color: var(--orange-primary);
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.orange-subhead {
    font-family: var(--font-sans);
    color: var(--orange-light);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-top: 5px;
}

.orange-tagline {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-top: 4px;
}

.section-title {
    font-family: var(--font-serif-title);
    color: var(--orange-primary);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: -15px;
    margin-bottom: 30px;
}

.text-center { text-align: center; }

/* CONTAINER - STRICT PADDING & CENTERING */
.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 25px;
    box-sizing: border-box;
}

/* BUTTONS WITH SHIMMER ANIMATION */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-button);
    font-size: 1.45rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-orange {
    position: relative;
    overflow: hidden;
    background-color: var(--orange-primary);
    color: #fff;
    border: 1px solid var(--orange-primary);
    box-shadow: 0 4px 18px rgba(202, 103, 56, 0.4);
}

.btn-orange::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.75s ease;
}

.btn-orange:hover::after {
    transform: rotate(30deg) translateY(100%);
}

.btn-orange:hover {
    transform: translateY(-3px);
    background-color: var(--orange-light);
    box-shadow: 0 8px 25px rgba(202, 103, 56, 0.65);
}

.btn-outline {
    background: rgba(45, 39, 24, 0.6);
    color: #fff;
    border: 1px solid var(--orange-primary);
}

.btn-outline:hover {
    background: rgba(202, 103, 56, 0.2);
    color: #fff;
    border-color: var(--orange-light);
    transform: translateY(-3px);
}

.btn-outline-sm {
    padding: 8px 20px;
    font-family: var(--font-button);
    font-size: 1.2rem;
    letter-spacing: 1.8px;
    background: transparent;
    color: var(--orange-primary);
    border: 1px solid var(--orange-border);
    text-decoration: none;
}

.btn-outline-sm:hover {
    border-color: var(--orange-primary);
    background: rgba(202, 103, 56, 0.25);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ==========================================
   HEADER / NAVBAR (SOLID ORANGE HEADER - NO PURPLE LINE)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ca6738;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 35px;
    box-sizing: border-box;
}

.logo {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-logo-text {
    font-family: var(--font-serif-title);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block;
}

.logo:focus, .logo:active, .logo:hover,
.nav-logo-text:focus, .nav-logo-text:active, .nav-logo-text:hover {
    text-decoration: none !important;
    outline: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    opacity: 0.85;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* WHATSAPP FLOATING BUTTON WITH BADGE */
.whatsapp-btn-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.whatsapp-badge {
    background: rgba(39, 35, 22, 0.9);
    border: 1px solid var(--orange-border);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.whatsapp-btn {
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
}

.whatsapp-btn-wrap:hover .whatsapp-btn {
    transform: scale(1.12);
}

/* ==========================================
   HERO SECTION 1 (DESKTOP)
   ========================================== */
.hero-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: url('assets/Portada Sin Texto.png') center center / cover no-repeat;
    padding: 120px 60px 60px 60px;
    box-sizing: border-box;
}

.hero-container {
    max-width: 720px;
    width: 100%;
    margin-right: 10%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-name {
    font-family: var(--font-serif-title);
    font-size: 6.2rem;
    line-height: 0.92;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 5px;
    margin-bottom: 14px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--orange-primary);
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   HDTD SECTION 2 (FEATURED COVER & COUNTDOWN)
   ========================================== */
.hdtd-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--orange-border);
    border-bottom: 1px solid var(--orange-border);
    overflow: hidden;
}

.hdtd-bg-blur {
    position: absolute;
    inset: 0;
    background: url('assets/Portada Destacada.png') center center / cover no-repeat;
    filter: grayscale(100%) blur(12px);
    opacity: 0.18;
    pointer-events: none;
}

.hdtd-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif-title);
    font-size: 22vw;
    font-weight: 800;
    color: rgba(202, 103, 56, 0.04);
    user-select: none;
    pointer-events: none;
    letter-spacing: 20px;
}

.hdtd-header {
    margin-bottom: 35px;
}

.hdtd-featured-card {
    max-width: 920px;
    width: 100%;
    margin: 0 auto 50px auto;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--orange-border);
    box-shadow: var(--shadow-soft);
}

.hdtd-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* COUNTDOWN GRID */
.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.countdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-serif-title);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 6px;
}

.countdown-divider {
    font-family: var(--font-serif-title);
    font-size: 2rem;
    color: var(--orange-border);
    margin-top: -15px;
}

/* ==========================================
   MUSIC CATALOG SECTION 3 & STREAMING PLATFORMS
   ========================================== */
.music-section {
    background-color: var(--bg-dark);
    width: 100%;
}

.music-grid-headers {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 25px;
}

.music-grid-headers .section-title {
    margin-bottom: 0;
}

.mobile-music-title {
    display: none;
    font-family: var(--font-serif-title);
    color: var(--orange-primary);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

.music-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: stretch;
    width: 100%;
}

.music-catalog {
    width: 100%;
}

.track-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 15px;
    width: 100%;
}

/* TRACK ITEM DESKTOP LAYOUT */
.track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--orange-border);
    border-radius: 6px;
    transition: var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
}

.track-item:hover,
.track-item.active {
    background: var(--bg-card-hover);
    border-color: var(--orange-border-hover);
}

.track-top-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.track-cover {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
}

.play-icon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.track-item:hover .play-icon-overlay {
    opacity: 1;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-title {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
    text-transform: none;
}

.track-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-item .btn-outline-sm {
    padding: 7px 18px;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

.streaming-platforms {
    width: 100%;
}

.platform-cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
    width: 100%;
}

.platform-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: var(--bg-card);
    border: 1px solid var(--orange-border);
    border-radius: 4px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
}

.platform-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--orange-primary);
    transform: translateX(4px);
}

.platform-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-left i {
    font-size: 1.25rem;
}

.spotify-icon { color: #1db954; }
.apple-icon { color: #fa233b; }
.youtube-icon { color: #ff0000; }
.deezer-icon { color: #00c7f2; }
.amazon-icon { color: #00a8e1; }

.arrow-icon {
    font-size: 0.8rem;
    color: var(--orange-primary);
}

/* ==========================================
   OFFICIAL GALLERY SECTION 4
   ========================================== */
.gallery-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--orange-border);
    width: 100%;
}

.gallery-header {
    margin-bottom: 48px;
    text-align: center;
}

.gallery-btn-wrapper {
    margin-top: 20px;
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery-card.portrait {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--orange-border);
    cursor: pointer;
}

.gallery-card.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 8%;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(39, 35, 22, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 1.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

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

/* ==========================================
   REELS DESTACADOS SECTION 4 (DESKTOP)
   ========================================== */
.reels-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--orange-border);
    width: 100%;
}

.reels-feed-wrapper {
    width: 100%;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.reel-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--orange-border);
    cursor: pointer;
    background: #000;
}

.reel-video-elem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(39, 35, 22, 0.85);
    border: 1px solid var(--orange-primary);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.reel-ig-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.reel-ig-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.reel-ig-audio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--orange-light);
}

.reel-swipe-hint {
    display: none;
}

.reel-card:hover .reel-video-elem {
    transform: scale(1.05);
}

.reel-card:hover .reel-play-btn {
    background: var(--orange-primary);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.15);
}

/* ==========================================
   NOVEDADES (UNCROPPED HEAD POSITION)
   ========================================== */
.news-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--orange-border);
    width: 100%;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    width: 100%;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--orange-border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    width: 100%;
}

.news-card:hover {
    border-color: var(--orange-border-hover);
    transform: translateY(-4px);
}

.news-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.news-head-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
    transition: var(--transition-smooth);
}

.news-card:hover .news-head-crop {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--orange-primary);
    border: 1px solid var(--orange-border);
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: none;
    font-family: var(--font-sans);
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    margin-top: auto;
}

.news-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.news-link:hover {
    color: var(--orange-light);
    gap: 12px;
}

/* ==========================================
   INVITACIONES (2 COLUMNS COMPLEX LAYOUT)
   ========================================== */
.booking-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--orange-border);
    width: 100%;
}

.booking-2col-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.booking-hero-title {
    font-family: var(--font-serif-title);
    color: var(--orange-primary);
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.booking-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
}

.booking-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--orange-border);
    border-radius: 6px;
}

.info-icon {
    font-size: 1.6rem;
    color: var(--orange-primary);
}

.info-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.info-value {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-value:hover {
    color: var(--orange-primary);
}

.booking-form {
    background: var(--bg-card);
    padding: 35px;
    border: 1px solid var(--orange-border);
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

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

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

.form-group label {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--orange-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: #ffffff !important; /* White icon in label */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(39, 35, 22, 0.8);
    border: 1px solid var(--orange-border);
    border-radius: 3px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
}

/* BRIGHT CLEAN WHITE CALENDAR PICKER ICON */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2) !important;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 10px rgba(202, 103, 56, 0.25);
}

/* ==========================================
   SOCIAL LINKS SECTION
   ========================================== */
.social-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--orange-border);
    padding: 60px 0;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.social-icons a i {
    font-size: 1.4rem;
}

.social-icons a:hover {
    color: var(--orange-primary);
    transform: translateY(-3px);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #14120b;
    border-top: 1px solid rgba(202, 103, 56, 0.2);
    padding: 40px 0 20px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-monogram {
    font-family: var(--font-serif-title);
    font-size: 1.8rem;
    color: var(--orange-primary);
    font-weight: 700;
}

.footer-brand {
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.footer-right {
    text-align: right;
}

.footer-contact-title {
    font-family: var(--font-serif-title);
    color: var(--orange-primary);
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}

/* ==========================================
   MODAL LIGHTBOX
   ========================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding: 30px;
}

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--orange-primary);
    font-size: 2rem;
    cursor: pointer;
}

.modal-body {
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-body img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    border: 1px solid var(--orange-border);
}

.modal-body video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    border: 1px solid var(--orange-border);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATIONS)
   ========================================== */
@media (max-width: 992px) {
    .hero-section {
        justify-content: center;
        padding: 120px 20px 70px 20px;
        text-align: center;
    }

    .hero-container {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-name {
        font-size: 4.2rem;
    }

    .music-grid-headers {
        display: none;
    }

    .mobile-music-title {
        display: block;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-2col-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .hdtd-watermark {
        display: none;
    }
}

/* TABLETS & PHONES (< 768px) */
@media (max-width: 768px) {
    .section-container {
        padding: 50px 16px;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ca6738;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    /* SECTION 1: HERO MOBILE OPTIMIZATIONS */
    .hero-section {
        min-height: 90vh;
        padding: 120px 16px 50px 16px;
        background-position: 25% center;
    }

    .hero-name {
        font-size: 3.2rem;
        line-height: 0.95;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 1.3rem;
    }

    /* SECTION 2: HDTD & COUNTDOWN MOBILE OPTIMIZATIONS */
    .orange-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .orange-subhead {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }

    .orange-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hdtd-featured-card {
        margin-bottom: 35px;
        border-radius: 4px;
    }

    .countdown-grid {
        gap: 10px;
        padding: 0;
    }

    .countdown-number {
        font-size: 2.0rem;
    }

    .countdown-label {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .countdown-divider {
        font-size: 1.3rem;
        margin-top: -10px;
    }

    /* SECTION 3: MUSIC CATALOG MOBILE */
    .track-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .track-top-row {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .track-cover {
        width: 58px;
        height: 58px;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .track-info {
        flex: 1;
        min-width: 0;
    }

    .track-title {
        font-size: 0.98rem;
        font-weight: 600;
        line-height: 1.25;
        margin-bottom: 2px;
    }

    .track-artist {
        font-size: 0.78rem;
        color: var(--text-muted);
    }

    .track-item .btn-outline-sm {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        box-sizing: border-box;
        margin-top: 2px;
    }

    /* SECTION 4: GALLERY & REELS EXPANDED FIT */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-card.portrait img {
        object-position: 50% 8%;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .btn-gallery-modal {
        width: 100%;
        max-width: 280px;
    }

    .reels-section .section-container {
        padding: 40px 16px !important;
    }

    .reels-section .section-title {
        font-size: 1.75rem !important;
        letter-spacing: 2px !important;
        white-space: nowrap !important;
        margin-bottom: 6px !important;
    }

    .reels-section .section-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }

    .reels-feed-wrapper {
        position: relative;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .reels-grid {
        display: flex;
        flex-direction: column;
        height: 470px;
        max-height: 64vh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        overscroll-behavior-y: auto !important;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0;
        scrollbar-width: none;
        border-radius: 12px;
        border: 1px solid var(--orange-border);
        background: #000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .reels-grid::-webkit-scrollbar {
        display: none;
    }

    .reel-card {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        aspect-ratio: 9 / 16;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 0;
    }

    .reel-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .reel-swipe-hint {
        display: block;
        text-align: center;
        font-size: 0.72rem;
        color: var(--text-muted);
        margin-top: 8px;
        letter-spacing: 1px;
    }

    /* SECTION 5: NOVEDADES MOBILE OPTIMIZATION */
    .news-section .section-title {
        font-size: 2.0rem;
        margin-bottom: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .news-card {
        border-radius: 8px;
    }

    .news-content {
        padding: 18px 16px;
    }

    .news-title {
        font-size: 1.05rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .news-date {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    /* SECTION 6: INVITACIONES & FORMULARIO MOBILE OPTIMIZATION */
    .booking-hero-title {
        font-size: 2.1rem;
        line-height: 1.15;
        margin-bottom: 14px;
        text-align: center;
    }

    .booking-description {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
    }

    .booking-info-box {
        gap: 14px;
        margin-bottom: 30px;
    }

    .info-item {
        padding: 14px;
        gap: 14px;
    }

    .booking-form {
        padding: 22px 16px;
        border-radius: 8px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 0.65rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .booking-form .btn-orange {
        font-size: 1.25rem;
        padding: 14px;
    }

    /* SOCIAL LINKS & FOOTER MOBILE OPTIMIZATIONS */
    .social-icons {
        gap: 22px 28px;
    }

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

    .footer-right {
        text-align: center;
    }

    .platform-card {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .whatsapp-badge {
        display: none;
    }
}

/* SMALL MOBILE SCREENS (480px) */
@media (max-width: 480px) {
    .section-container {
        padding: 40px 12px;
    }

    .hero-name {
        font-size: 2.6rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }

    /* SECTION 2 SMALL MOBILE ADJUSTMENTS */
    .orange-title {
        font-size: 2.2rem;
    }

    .countdown-grid {
        gap: 6px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-divider {
        font-size: 1.0rem;
    }

    /* SECTION 3 SMALL MOBILE ADJUSTMENTS */
    .track-item {
        padding: 12px;
        gap: 10px;
    }

    .track-cover {
        width: 52px;
        height: 52px;
    }

    .track-title {
        font-size: 0.90rem;
    }

    .track-artist {
        font-size: 0.74rem;
    }

    .track-item .btn-outline-sm {
        padding: 7px 10px;
        font-size: 0.90rem;
    }

    /* SECTION 4 SMALL MOBILE ADJUSTMENTS */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reels-section .section-title {
        font-size: 1.6rem !important;
    }

    .reels-feed-wrapper {
        max-width: 310px;
    }

    .reels-grid {
        height: 440px;
        max-height: 60vh;
    }

    /* SECTION 5 & 6 SMALL MOBILE ADJUSTMENTS */
    .booking-hero-title {
        font-size: 1.85rem;
    }

    .booking-form {
        padding: 18px 12px;
    }
}
