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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --secondary-dark: #2d2d2d;
    --secondary-light: #e8e8e8;
    --accent: #333333;
    --text-dark: #1a1a1a;
    --text-light: #f8f8f8;
    --border: #d0d0d0;
}

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

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

.milogo {
	font-family: 'GrindAndDeath';
}

.milogo span{
	font-family: 'Sectar';
	font-size:3.5rem;
}

#page-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-light);
    color: var(--text-dark);
    line-height: 1.6;
}

div.page-slide {
	padding-top:40px;
	padding-bottom:40px;
}

/* HEADER */
.header {
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--secondary-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo h1 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
	text-align:center;
	width:100%;
	
}

.logo h1 a:hover {
	
	opacity:0.7;
}

a.nav-link2 {
	width:100%;
	display: flex;
	align-items: center;
    justify-content: center;
}

.tagline {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* NAVEGACIÓN */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

.nav-link:hover {
    color: #666;
}
.nav-link2:hover {
    opacity:0.7;
}
.nav-link:hover::after {
    width: 100%;
}

/* CONTENIDO PRINCIPAL */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    min-height: calc(100vh - 300px);
}

#contactForm{
	margin-bottom:30px;
	
}

/* HERO SECTION */
.hero {
    text-align: center;
  
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* SECCIÓN DE CANCIONES */
.latest-songs {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--text-dark);
}

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

.video-card {
    background-color: var(--secondary-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.video-info p {
    font-size: 0.95rem;
    color: #888;
}

/* FOOTER CON REDES SOCIALES */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid var(--secondary-dark);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-dark);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}