/*
Theme Name: Jorge Trez - Música del Corazón
Theme URI: https://jorgetrez.com
Author: Jorge Trez
Author URI: https://jorgetrez.com
Description: Plantilla personalizada para Jorge Trez, cantante de música romántica y regional mexicana. Totalmente editable desde el panel de WordPress sin conocimientos de programación.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jorge-trez
Tags: music, artist, regional-mexicano, romantica, one-page
*/

/* ================================================
   VARIABLES DE COLOR - PALETA JORGE TREZ
   ================================================
   Colores oficiales de la marca:
   - Azul Marino Profundo: #0F1419 (fondo principal)
   - Dorado Real:         #D4AF37 (acento principal)
   - Rojo Pasión:         #C41E3A (acento secundario)
   ================================================ */

:root {
    --primary-gold: #D4AF37;
    --dark-navy: #0F1419;
    --warm-brown: #8B4513;
    --cream: #FFF8DC;
    --soft-gold: #F4E4C1;
    --accent-red: #C41E3A;
    --text-light: #FFFFFF;
    --text-dark: #2C2C2C;
    --navy-mid: #1a1f2e;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-navy);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.music-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0F1419 0%, #1a1f2e 50%, #0F1419 100%);
    overflow: hidden;
}

.music-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 58, 0.06) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.musical-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.15);
    animation: floatNotes 15s linear infinite;
}

@keyframes floatNotes {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Header */
header {
    padding: 20px 5%;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--soft-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a:hover { color: var(--primary-gold); }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero {
    padding: 100px 5% 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--soft-gold) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.hero .music-emoji {
    font-size: 5rem;
    display: inline-block;
    animation: bounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    margin-bottom: 20px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--soft-gold);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero .description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* Artist Photo Section */
.artist-photo {
    padding: 80px 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(212,175,55,0.05) 50%, rgba(0,0,0,0) 100%);
}

.photo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.photo-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.photo-item:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(212,175,55,0.3); }
.photo-item:hover img { transform: scale(1.1); filter: brightness(1); }

.photo-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(15,20,25,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Music Section */
.music-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(15,20,25,0.5) 0%, rgba(26,31,46,0.8) 100%);
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.music-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-weight: 700;
}

.music-section .tagline {
    text-align: center;
    font-size: 1.3rem;
    color: var(--soft-gold);
    margin-bottom: 70px;
    font-weight: 300;
}

.songs-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.song-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(15,20,25,0.6) 100%);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.song-card::before {
    content: '♪';
    position: absolute;
    top: -30px; right: -20px;
    font-size: 150px;
    color: rgba(212,175,55,0.05);
    font-weight: bold;
}

.song-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(15,20,25,0.7) 100%);
}

.song-info { margin-bottom: 25px; }

.song-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.song-card .genre {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.song-card .description {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.coffee-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--warm-brown) 100%);
    color: var(--dark-navy);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(212,175,55,0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.coffee-button::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.coffee-button:hover::before { width: 400px; height: 400px; }
.coffee-button:hover { transform: scale(1.08); box-shadow: 0 20px 50px rgba(212,175,55,0.6); }
.coffee-button:active { transform: scale(1.02); }
.coffee-button span { position: relative; z-index: 1; }
.coffee-icon { font-size: 1.5rem; position: relative; z-index: 1; }

.support-message {
    text-align: center;
    margin-top: 30px;
    padding: 30px;
    background: rgba(212,175,55,0.05);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.2);
}

.support-message p { color: var(--soft-gold); font-size: 1.1rem; line-height: 1.8; font-weight: 300; }

.support-message .heart {
    color: var(--accent-red);
    font-size: 1.3rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* About Section */
.about-section {
    padding: 100px 5%;
    background: rgba(0,0,0,0.3);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    font-weight: 700;
}

.about-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 60px 5% 40px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-logo { margin-bottom: 30px; }
.footer-logo img { height: 60px; opacity: 0.8; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.social-links a {
    color: var(--soft-gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover { color: var(--primary-gold); transform: translateY(-5px); }

footer p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 15px 0; }

/* Admin Notice Bar */
.jt-admin-notice {
    background: linear-gradient(90deg, #C41E3A, #8B0000);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    display: none;
}

body.logged-in .jt-admin-notice { display: block; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .logo-container img { height: 50px; }
    .hero h1 { font-size: 2.5rem; }
    .hero .music-emoji { font-size: 3.5rem; }
    .hero .subtitle { font-size: 1.2rem; }
    .music-section h2 { font-size: 2.5rem; }
    .song-card { padding: 30px 25px; }
    .song-card h3 { font-size: 1.6rem; }
    .photo-grid { grid-template-columns: 1fr; }
    .photo-item img { height: 350px; }
}
