@charset "utf-8";
/* CSS Document */

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #7c762a;
    --bs-btn-border-color: #7c762a;	
		}
	.btn-success:hover {
    --bs-btn-color: #fff;
    --bs-btn-bg: #605C27;
    --bs-btn-border-color:#605C27;
		}
	.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #000000;
		--bs-btn-border-color: #000000;
		}
     .btn-primary:hover {
   color: #fff;
    background-color: #97894D;
	border-color: #97894D;
		}		
		.modal-body {
	position: relative;
	background-image: url(images/bg-md.png);
	background-repeat: no-repeat;			
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000;
            color: #fff;
            font-family: 'Cinzel', serif;
            min-height: 100vh;
        }

        /* NAVBAR */
        .custom-navbar {
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(3px);
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Secciones del navbar */
        .nav-left, .nav-right {
            display: flex;
            gap: 25px;
        }

        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Enlaces del menu */
        .nav-link {
            color: #fff;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-weight: 500;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #ffefaf !important;
            text-shadow: 0 0 10px rgba(255, 239, 175, 0.8);
        }

        /* Logo central */
        .logo img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        /* HEADER SECTION - Imagen de fondo */
        .header-section {
            width: 100%;
            height: 70vh;
            background-image: url('images/header.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInBackground 1.5s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInBackground {
            0% {
                opacity: 0;
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Overlay para mejorar contraste */
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.1) 0%,
                rgba(0,0,0,0.05) 30%,
                rgba(0,0,0,0.05) 70%,
                rgba(0,0,0,0.1) 100%
            );
            z-index: 1;
        }

        /* Contenido del header */
        .header-content {
            z-index: 2;
            position: relative;
            text-align: center;
        }

        /* Título Aberranthe como imagen */
        .header-title-image {
            max-width: 800px;
            width: 90%;
            height: auto;
            z-index: 2;
            position: relative;
            filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
            animation: titleGlow 5s ease-in-out infinite alternate, fadeInTitle 2s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInTitle {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0px) scale(1);
            }
        }

        @keyframes titleGlow {
            from { 
                filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
                transform: scale(1);
            }
            to { 
                filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.7));
                transform: scale(1.02);
            }
        }

        /* ZONA DE CONTENIDO - Después del header con gradient suave */
        .content-section {
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 30%, #000 60%);
            padding: 40px 0;
            min-height: 60vh;
            position: relative;
            z-index: 3;
            margin-top: -150px;
        }

        .content-wrapper {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-family: 'Cinzel Decorative', serif;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            letter-spacing: 3px;
        }

        .section-text {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 50px;
            text-align: center;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .content-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 5px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .content-card:hover {
            background: rgba(255,239,175,0.1);
            border-color: #ffefaf;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,239,175,0.2);
        }

        .content-card::after {
            content: '▶';
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.2rem;
            color: #ffefaf;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .content-card:hover::after {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Modales de Bootstrap personalizados */
        .modal-content {
            background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.98) 100%);
            border: 1px solid rgba(111,111,111,0.3);
            border-radius: 5px;
        }

        .modal-header {
            border-bottom: 1px solid rgba(255,239,175,0.2);
            background: transparent;
        }

        .modal-title {
            color: #ffefaf;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .btn-close:hover {
            opacity: 1;
            filter: brightness(0) invert(1) drop-shadow(0 0 5px #ffefaf);
        }

        .modal-body {
            padding: 30px;
        }

        /* Responsive del video */
        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            border-radius: 10px;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .content-card h3 {
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .content-card p {
            color: #ccc;
            line-height: 1.6;
        }

        /* FOOTER SECTION - Con imagen de fondo */
        .footer-section {
            width: 100%;
            min-height: 50vh;
            background-image: url('images/footer.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                0deg,
                rgba(0,0,0,0.7) 0%,
                rgba(0,0,0,0.3) 50%,
                rgba(0,0,0,0.5) 100%
            );
            z-index: 1;
        }

        .footer-content {
            z-index: 2;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            width: 90%;
            max-width: 800px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,239,175,0.1);
            border: 1px solid rgba(255,239,175,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffefaf;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: rgba(255,239,175,0.2);
            border-color: #ffefaf;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,239,175,0.3);
        }

        .footer-text {
            color: #ccc;
            font-size: 1rem;
            letter-spacing: 2px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
            font-family: 'Cinzel', serif;
            margin: 0;
        }

        .footer-text a {
            color: #ffefaf;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-text a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 239, 175, 0.8);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.8; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        /* Burger menu button - Solo visible en móvil */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Animación del burger cuando está activo */
        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger-menu.active .burger-line:nth-child(2) {

            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Menú lateral */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.98) 100%);
            backdrop-filter: blur(15px);
            border-left: 1px solid rgba(255,255,255,0.2);
            transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        /* Contenido del sidebar */
        .sidebar-content {
            padding: 100px 30px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sidebar-logo {
            text-align: center;
            margin-bottom: 50px;
        }

        .sidebar-logo img {
            height: 60px;
            width: auto;
            filter: brightness(1) invert(0);
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-link {
            color: #fff;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-weight: 500;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 15px 20px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .sidebar-link:hover {
            color: #ffefaf;
            text-shadow: 0 0 15px rgba(255, 239, 175, 0.8);
            transform: translateX(-5px);
        }

        /* Overlay para cerrar el menú */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* Ocultar menú normal y mostrar burger */
            .nav-left, .nav-right {
                display: none;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .navbar-container {
                justify-content: space-between;
                padding: 0 20px;
            }
            
            .nav-center {
                position: static;
                transform: none;
            }
            
            .header-title-image {
                max-width: 600px;
                width: 95%;
            }
            
            .content-section {
                padding: 60px 0;
                margin-top: 0;
                position: relative;
                background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.95) 50%, #000 80%);
            }
            
            .section-title {
                font-size: 2rem;
                letter-spacing: 2px;
            }
            
            .section-text {
                font-size: 1rem;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .content-card {
                padding: 0;
                height: 250px;
            }
            
            .footer-text {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 576px) {
            .navbar-container {
                padding: 0 15px;
            }
            
            .header-title-image {
                max-width: 400px;
                width: 95%;
            }
            
            .content-section {
                padding: 50px 0;
                margin-top: 0;
                position: relative;
                background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 20%, rgba(0,0,0,0.95) 50%, #000 80%);
            }
            
            .section-title {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }
            
            .content-card {
                padding: 0;
                height: 200px;
            }
            
            .footer-text {
                font-size: 0.8rem;
            }
            
            .mobile-sidebar {
                width: 280px;
                right: -280px;
            }
        }
    body,td,th {
	font-family: Cinzel, serif;
}
a:link {
	color: rgba(255,255,255,1);
	text-decoration: none;
}
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	color: #FFE496;
	text-decoration: none;
}
a:active {
	color: #FFFFFF;
	text-decoration: none;
}