@font-face {
    font-family: 'EyesomeScript';
    src: url('../fonts/EyesomeScript.otf') format('opentype');
}

@font-face {
    font-family: 'CMU';
    src: url('../fonts/CMU.ttf') format('truetype');
}

:root {
    --bg-light: #F2EAD3;
    /* Crema/Arena bonito */
    --text-main: #3E2723;
    /* Marrón elegante */
    --primary-brown: #5D4037;
    /* Marrón tierra profundo */
    --secondary-brown: #8D6E63;
    --accent-natural: #A1887F;
    --dark-wood: #2D1B10;
    /* Madera oscura para footer */
    --nav-bamboo: #E1C699;
    /* Bambú */
    --card-bg: #FAF9F6;
    /* Crema claro para tarjetas */
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(93, 64, 55, 0.2);
    border-top: 5px solid var(--primary-brown);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-brown);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cielo-abierto {
    font-family: 'EyesomeScript', cursive;
    text-transform: none;
}

.worship {
    font-family: 'CMU', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%233E2723'><path d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/></svg>"), auto;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

/* Animations Layer */
#animation-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0;
    animation: floatUp 15s linear infinite;
    filter: drop-shadow(0px 4px 6px rgba(74, 20, 140, 0.2));
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: url('../images/menu.jpg'), linear-gradient(90deg, #E1C699 0%, #D2B48C 50%, #E1C699 100%);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #C4A484;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

.navbar .logo a {
    text-decoration: none;
    color: inherit;
}

.navbar .logo h1 {
    font-size: 1.8rem;
    color: #000000;
}

.navbar .logo .worship {
    color: #000000;
    font-weight: bold;
    font-size: 0.6rem; /* Made very small */
    letter-spacing: 4px; /* Increased spacing to keep it legible */
}

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

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-purple);
}

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

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 4px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-wood));
    color: white;
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(74, 20, 140, 0.5);
}

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

.secondary-btn:hover {
    background: var(--primary-brown);
    color: white;
}

/* Sections */
.page-section {
    min-height: 100vh;
    padding: 120px 5% 50px;
    display: block;
}



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

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-main);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-brown);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.hero-btns {
    display: flex;
    gap: 30px; /* Increased gap to accommodate tooltip */
    justify-content: center;
    margin-top: 40px;
}

.btn-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-box {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) perspective(1000px) rotateX(-90deg);
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom center;
    z-index: 100;
}

.btn-tooltip-wrapper:hover .tooltip-box {
    opacity: 1;
    transform: translateX(-50%) perspective(1000px) rotateX(0deg);
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.album-mini-cover {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.single-title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: var(--primary-brown);
    font-size: 1rem;
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}


.new-single-pill {
    display: inline-block;
    padding: 8px 25px;
    background: var(--accent-natural);
    color: #FFFFFF; /* Changed to white */
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 80px;
    opacity: 1;
    border: none;
}

/* Hero (Inicio) */
#inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, rgba(141, 110, 99, 0.1) 0%, var(--bg-light) 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h2 {
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 20px;
    margin-top: 10px;
    display: block;
    text-align: center;
    transform: translateX(210px);
    opacity: 0.8;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--secondary-brown);
}

/* Main Photo Frame (Polaroid Style) */
.main-photo-frame {
    background: #FFFFFF;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
    border-radius: 5px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-photo {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    border: 1px solid #eee;
}

.frame-label {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
}

.frame-label .cielo-abierto {
    font-size: 1.8rem;
    color: var(--primary-brown);
}

.frame-label .worship {
    font-size: 0.6rem;
    letter-spacing: 5px;
    display: block;
    margin-top: -5px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}


/* Professional Record Label (Discografía) Styles */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.album-card {
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-align: left;
    transition: none;
}

.album-card:hover {
    transform: none;
    box-shadow: none;
}

.album-cover-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    cursor: pointer;
}

.album-cover {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 270px;
    height: 270px;
    background: radial-gradient(circle, #222 0%, #111 30%, #222 35%, #111 40%, #222 45%, #111 50%, #222 55%, #111 60%, #222 65%, #111 100%);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #333;
}

.vinyl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--nav-bamboo);
    border-radius: 50%;
    border: 2px solid #000;
}

.album-card:hover .album-cover {
    transform: translateX(-40px);
}

.album-card:hover .vinyl {
    transform: translateX(60px) rotate(180deg);
}

.album-card h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-align: center;
    color: var(--text-main);
}

.release-info {
    font-size: 0.8rem;
    color: var(--secondary-brown);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stream-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.stream-icon {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--primary-brown);
    border: 1px solid var(--primary-brown);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

}

/* General Grids & Cards */
.video-grid,
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-card,
.merch-item,
.article-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.video-card:hover,
.merch-item:hover,
.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Video Pro Layout */
.video-pro-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.video-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 120px;
}

.video-info-side {
    text-align: center;
    max-width: 800px;
}

.v-tag {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-brown);
    font-weight: bold;
    border: 1px solid var(--primary-brown);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.video-info-side h3 {
    font-family: 'EyesomeScript', cursive;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.video-info-side p {
    font-size: 0.8rem;
    color: var(--secondary-brown);
    font-family: 'CMU', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.side-album-art {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.v-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-brown), transparent);
    opacity: 0.3;
}

.video-mini-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.video-card.pro-small {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.video-card.pro-small h4 {
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: center;
}

.video-card.pro-small .video-thumb {
    aspect-ratio: 16/9;
}

.video-card.pro-small .play-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .video-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .video-info-side {
        position: static;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
    aspect-ratio: 16/9;
    border-radius: 10px;
    background: var(--dark-contrast);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-left: 5px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease;
}

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

/* Merch */
.merch-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    background-color: #eee;
    margin-bottom: 20px;
}

.hoodie {
    background: radial-gradient(circle, #333, #111);
}

.tshirt {
    background: radial-gradient(circle, #444, #222);
}

.cap {
    background: radial-gradient(circle, #2a2a2a, #0a0a0a);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-brown);
    margin: 10px 0 20px;
}

/* Enseñanza */
.article-card {
    text-align: left;
    padding: 40px;
}

.article-date {
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.article-card p {
    margin: 15px 0;
    color: var(--secondary-brown);
    line-height: 1.6;
}

.read-more {
    color: var(--primary-purple);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: -20px;
    transition: right 0.3s;
}

.read-more:hover::after {
    right: -25px;
}

/* Donaciones */
.donation-box {
    background: var(--card-bg);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 5px solid var(--primary-brown);
}

.donation-box p {
    margin-bottom: 30px;
    color: var(--secondary-brown);
    font-size: 1.1rem;
}

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.amt-btn {
    padding: 15px 30px;
    border: 2px solid var(--secondary-purple);
    background: transparent;
    color: var(--secondary-purple);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.amt-btn:hover,
.amt-btn.selected {
    background: var(--secondary-purple);
    color: white;
}

/* Contacto */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #444;
    background: var(--bg-light);
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-purple);
}

footer {
    text-align: center;
    padding: 30px;
    background: var(--dark-wood);
    color: #F2EAD3;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: #E1C699;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 10px;
        transform: translateX(0);
        margin-left: 0;
        text-align: center;
        padding: 0;
    }

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

/* Band Showcase "WOOO" Design */
.band-showcase {
    margin-top: 80px;
    padding: 60px 0;
    position: relative;
}

.dynamic-title {
    font-family: 'EyesomeScript', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-brown);
    line-height: 1.2;
}

.dynamic-title span {
    font-family: 'CMU', serif;
    font-size: 1.5rem;
    letter-spacing: 15px;
    display: block;
    text-transform: uppercase;
    color: var(--text-main);
}

.members-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 20px;
}

.member-art-card {
    background: #fff;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border-radius: 5px;
}

/* Asymmetrical rotations for organic feel */
.item-1 { transform: rotate(-3deg); }
.item-2 { transform: rotate(2deg); margin-top: 40px; }
.item-3 { transform: rotate(-2deg); }
.item-4 { transform: rotate(3deg); }
.item-5 { transform: rotate(-1deg); margin-top: -30px; }
.item-6 { transform: rotate(4deg); }

.member-art-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-15px);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.photo-frame {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #eee;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.member-photo-new {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: sepia(0.3) contrast(1.1); /* Efecto vintage */
    transition: 0.5s;
}

.member-art-card:hover .member-photo-new {
    filter: sepia(0) contrast(1);
    transform: scale(1.1);
}

.member-info h4 {
    font-family: 'EyesomeScript', cursive;
    font-size: 2.2rem;
    margin: 10px 0 5px;
    color: var(--primary-brown);
}

.member-role {
    font-family: 'CMU', serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    display: block;
}

.member-info p {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .members-art-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .members-art-grid {
        grid-template-columns: 1fr;
    }
    .item-2, .item-5 { margin-top: 0; }
}
/* Próximos Lanzamientos */
.upcoming-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.album-card.upcoming {
    max-width: 350px;
    filter: grayscale(0.5);
    transition: all 0.5s ease;
}

.album-card.upcoming:hover {
    filter: grayscale(0);
    transform: translateY(-10px) scale(1.02);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-brown);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.section-subtitle {
    text-align: center;
    color: var(--primary-brown);
    opacity: 0.7;
    margin-top: 10px; /* Better spacing from title */
    margin-bottom: 60px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center; /* Centering the grid itself */
    justify-items: center;   /* Centering items within grid cells */
}

/* Reduce space between discography sections */
#proximos-lanzamientos {
    min-height: auto;
    padding-bottom: 20px;
}

#discografia {
    min-height: auto;
    padding-top: 40px;
}

/* Album Selector in Videos */
.album-selector-container {
    text-align: center;
    margin-bottom: 60px;
}

.selector-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
    opacity: 0.8;
}

.album-trigger-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.album-trigger {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 150px;
}

.trigger-art {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    filter: grayscale(1);
    border: 3px solid transparent;
}

.album-trigger span {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-main);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.album-trigger:hover .trigger-art,
.album-trigger.active .trigger-art {
    filter: grayscale(0);
    transform: scale(1.05);
    border-color: var(--primary-brown);
    box-shadow: 0 15px 30px rgba(109, 76, 65, 0.3);
}

.album-trigger:hover span,
.album-trigger.active span {
    opacity: 1;
    color: var(--primary-brown);
}

/* Consistent Video Card Sizing (FORCE 560x315) */
.video-card.pro-standard {
    width: 560px !important;
    max-width: 560px !important;
    margin: 0 auto 40px !important;
    padding: 0 !important; /* Remove padding that makes video look small */
}

.video-card.pro-standard .video-thumb {
    width: 560px !important;
    height: 315px !important;
    background: #000 !important;
    border-radius: 12px !important;
}

.video-card.pro-standard iframe {
    width: 560px !important;
    height: 315px !important;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    background: linear-gradient(45deg, #1a1a1a, #333);
}

/* Contact Page Redesign */
.contact-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 60px;
    font-style: italic;
    opacity: 0.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(109, 76, 65, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    background: rgba(109, 76, 65, 0.05);
    border-color: var(--primary-brown);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: var(--primary-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Social Circular Buttons */
.social-connect-section {
    margin-top: 60px;
}

.social-connect-section h3 {
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
}

.social-circular-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--primary-brown);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.social-btn:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 15px 30px rgba(109, 76, 65, 0.3);
}

/* Specific Social Colors on Hover */
.social-btn.yt:hover { background: #FF0000; }
.social-btn.ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.fb:hover { background: #1877F2; }
.social-btn.tk:hover { background: #000000; }
.social-btn.sp:hover { background: #1DB954; }
.social-btn.am:hover { background: #FA243C; }
.social-btn.ym:hover { background: #FF0000; }
