/*
Theme Name: DRAC Web 2025
Theme URI: https://drac.web
Author: Tu Nombre
Author URI: https://drac.web
Description: Tema para la Vicerrectoría Académica - Departamento de Registro Académico y Curricular
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drac-web-2025
Domain Path: /languages
*/

/* ===================================
   IMPORTAR FUENTES
   =================================== */
/* Fuente local - Bebas Neue Pro Bold (para títulos) */
@font-face {
    font-family: 'Bebas Neue Pro';
    src: url('fonts/bebas-neue-pro/Bebas-Neue-Pro-SemiExpanded-Bold-BF66cf3d78c1f4e.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-stretch: semi-expanded;
}

/* Fuente local - Bebas Neue Pro Regular (para texto normal) */
@font-face {
    font-family: 'Bebas Neue Pro';
    src: url('fonts/bebas-neue-pro/Bebas-Neue-Pro-Regular-BF66cf3d7814160.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
}

/* Fuente local - Roboto Condensed Medium */
@font-face {
    font-family: 'Roboto Condensed';
    src: url('fonts/Roboto_Condensed/static/RobotoCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Fuente de respaldo desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&display=swap');

/* ===================================
   ESTILOS GLOBALES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

body {
    line-height: 1.6;
    color: #333;
}


/* ===================================
   ESTILOS GENERALES DEL SITIO
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-stretch: semi-expanded;
}

p, span, a, li {
    font-family: 'Bebas Neue Pro', 'Bebas Neue', sans-serif;
    font-weight: 400;
}

a {
    color: #00A499;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #007a6f;
}

/* Contenedor principal */
.container {
    max-width: 1897px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===================================
   PALETA DE COLORES
   =================================== */
:root {
    --color-turquesa: #00A499;
    --color-plomo: #394049;
    --color-negro: #000000;
    --color-blanco: #ffffff;
    --color-texto: #333333;
    --shadow-box: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}