/* ==========================================================================
   1. DISEÑO BASE Y CONFIGURACIÓN CINEMÁTICA
   ========================================================================== */
body {
    background-color: #0a0d14;
    background-image: radial-gradient(circle at center, #101622 0%, #05070b 100%);
    color: #e1e1e6;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Títulos tipografía Cinzel */
h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #bfa15f;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-family: 'Cinzel', serif;
    color: #a8a8b3;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-weight: 300;
}

.section-title {
    font-family: 'Cinzel', serif;
    color: #bfa15f;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 8px;
    display: inline-block;
}

/* ==========================================================================
   2. MENÚ DE NAVEGACIÓN SUPERIOR
   ========================================================================== */
.main-nav {
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    flex-wrap: wrap;
}


.main-nav a {
    color: #a8a8b3;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: #d4af37;
}

.main-nav a.active {
    color: #d4af37;
    font-weight: 700;
    border-bottom-color: #d4af37;
}

/* ==========================================================================
   3. PÁGINA PRINCIPAL (INDEX / HOME) - BANNER ORIGINAL VGM IRELAND
   ========================================================================== */
.hero-banner {
    width: 100%;
    max-width: 1200px;
    
    /* En vez de height: 330px fijo: */
    height: auto;
    max-height: 330px; 
    aspect-ratio: 16 / 5; /* O una proporción panorámica que encaje bien */
    
    margin-top: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;

    -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 20%, transparent 100%);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Si el barco está a la derecha, en encuadres ajustados da prioridad a esa zona: */
    object-position: 65% center; 
    display: block;
    filter: contrast(1.05) brightness(0.95);
}

/* Ajuste específico para móviles (pantallas de 768px o menos) */


.hero-banner img {
    /* Centramos el encuadre ligeramente hacia la derecha donde está el barco */
    object-position: 70% center; 
}


.about-card {
    background-color: rgba(16, 22, 34, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 45px;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-card p {
    margin: 0;
    font-weight: 300;
    color: #ccd6f6;
}

.player-section {
    margin-bottom: 50px;
}

.player-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.player-container iframe {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Grid de enlaces */
.links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.btn, .ctabtn {
    background-color: #0e131f;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid #232d42;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.ctabtn {
    display: inline-block;
    margin-bottom: 60px;
}

.btn:hover, .ctabtn:hover {
    background-color: #131a2b;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(212, 175, 55, 0.1);
}


/* ==========================================================================
   4. PÁGINA DE CONTACTO (CONTACT)
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    text-align: left;
}

.contact-info-card, .form-container {
    background-color: rgba(16, 22, 34, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.info-item p {
    margin: 0;
    font-weight: 300;
    color: #ccd6f6;
}

.info-item a {
    color: #e1e1e6;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #d4af37;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #bfa15f;
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    background-color: #0e131f;
    border: 1px solid #232d42;
    border-radius: 4px;
    padding: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-submit {
    background-color: #0e131f;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 1px solid #232d42;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-submit:hover {
    background-color: #131a2b;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #05070b;
    padding: 60px 20px 30px 20px;
    text-align: center;
    margin-top: 80px;
    width: 100%;
    box-sizing: border-box;
}

.footer-top {
    margin-bottom: 40px;
}

.main-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;

    /* 
       MÁSCARA RADIAL: 
       Mantiene el centro 100% opaco y desvanece de forma suave y circular 
       hacia los 4 bordes (arriba, abajo, izquierda y derecha)
    */
    -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 30%, transparent 100%);
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #d4af37;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 40px auto;
    max-width: 800px;
}

.footer-social {
    margin-bottom: 50px;
}

.social-title {
    display: block;
    color: #8a94a6;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #111622;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-bt:hover { background-color: #d4af37; color: #000000; }
.btn-itch:hover { background-color: #ff4c4c; }
.btn-linkedin:hover { background-color: #0077b5; }
.btn-youtube:hover { background-color: #ff0000; }

.social-icon-btn:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    color: #566175;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 5px 0;
}

.legal-text {
    font-size: 0.75rem;
    color: #3b4554;
    max-width: 600px;
    margin: 10px auto 0 auto !important;
}

/* ==========================================================================
   5. ESTILOS ESPECÍFICOS PARA GARMAN BLUE
   ========================================================================== */

.gb-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 20px;
    margin-bottom: 5px;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #ffffff 35%, 
        #c2e0ff 55%, 
        #3a7bd5 80%, 
        #0d2e61 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 4px 12px rgba(0, 162, 255, 0.3));
}

.gb-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: -5px;
    margin-bottom: 40px;
    background: linear-gradient(145deg, 
        #ffffff 0%, 
        #ffffff 30%, 
        #d0e4ff 50%, 
        #5b94e8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 8px rgba(0, 162, 255, 0.25));
}

/* Marcas en texto */
.brand-gb {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(235deg, #77a5e9 30%, #5b94e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 4px rgba(0, 162, 255, 0.4));
}

.brand-vgmi {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #d4b54d 0%, #d4af37 60%, #bfa15f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 4px rgba(212, 175, 55, 0.4));
}

.gb-spotify-btn {
    border-color: #00a2ff;
    color: #00a2ff;
    transition: all 0.3s ease;
}

.gb-spotify-btn:hover {
    background-color: rgba(0, 162, 255, 0.15);
    border-color: #00a2ff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   BANNER EXCLUSIVO DE GARMAN BLUE (Efecto Horizonte Synthwave)
   ========================================================================== */

.hero-banner-gb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #05070b;
    padding: 60px 20px;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
    box-sizing: border-box;

    /* 
       MÁSCARA RADIAL: 
       Mantiene el centro 100% opaco y desvanece de forma suave y circular 
       hacia los 4 bordes (arriba, abajo, izquierda y derecha)
    */
    -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 55% 60% at 50% 50%, black 30%, transparent 100%);

    /* Eliminamos box-shadows duros que puedan marcar bordes rectangulares */
    box-shadow: none;
}

/* Ajuste de la línea del horizonte para potenciar el desvanecimiento lateral */
.hero-banner-gb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    
    /* Degradado propio de la línea: pasa a transparente mucho antes de llegar a los extremos */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 162, 255, 0.1) 15%, 
        rgba(0, 162, 255, 0.6) 30%, 
        #ffffff 48%, 
        #ffd700 50%, 
        #ffffff 52%, 
        rgba(0, 162, 255, 0.6) 70%, 
        rgba(0, 162, 255, 0.1) 85%, 
        transparent 100%
    );
    box-shadow: 
        0 0 12px rgba(0, 162, 255, 0.8),
        0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-50%);
    z-index: 1;
}

/* Resplandor suave vertical en el centro */
.hero-banner-gb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 100px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 162, 255, 0.2) 0%, 
        rgba(212, 175, 55, 0.08) 45%, 
        transparent 75%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Logo sobre la línea */
.hero-banner-gb img {
    position: relative;
    z-index: 2;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(5, 7, 11, 0.9));
}

/* ==========================================
   BREAKPOINT 1: Tablets y Móviles (≤ 768px)
   ========================================== */
@media (max-width: 768px) {
  /* Navegación principal */
  .main-nav {
    justify-content: center;
  }

  /* Banners principales y máscaras */
  .hero-banner,
  .hero-banner-gb {
    /* Ajustes de posición o máscara que tenías a 768px */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  }
}

/* ==========================================
   BREAKPOINT 2: Pantallas estrechas (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
  /* Rejillas y enlaces a 1 columna */
  .links {
    grid-template-columns: 1fr;
  }

  /* Ajustes finos de tipografía o padding si fueran necesarios */
  .main-nav {
    padding: 0.5rem;
  }
}