:root {
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --accent: #c8a84e;
    --accent-light: #e0c76a;
    --accent-dark: #a08030;
    --green: #2d5a27;
    --green-light: #3d7a35;
    --text-light: #f0ece2;
    --text-muted: #9a9a9a;
    --text-white: #ffffff;
    --border-subtle: rgba(200, 168, 78, 0.15);
    --glass: rgba(26, 26, 26, 0.85);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand, .hero-title, .hero-subtitle,
.discipline-popup-title, .press-card-title, .news-card-title {
    font-family: 'Oswald', 'Segoe UI', sans-serif;
}

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 78, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(200, 168, 78, 0); }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.8rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-brand img {
    border-radius: 50%;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.4);
}

.nav-link {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted) !important;
    transition: all 0.3s ease;
    margin: 0 0.3rem;
    padding: 0.5rem 0.8rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent) !important;
    transform: none;
}

.nav-link:hover::after {
    width: 70%;
}

/* ========== HERO ========== */
.hero-section {
    margin-top: 60px;
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 25s ease-in-out infinite alternate;
    filter: brightness(0.5);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    color: var(--text-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
    animation: fadeInUp 1s ease 0.3s backwards;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent) !important;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.9s backwards;
}

.hero-buttons .btn {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-outline-light {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 168, 78, 0.3);
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.bg-light {
    background: var(--bg-section) !important;
}

/* ========== SECTION TITLES ========== */
.display-5 {
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background-clip: unset !important;
    position: relative;
    display: inline-block;
}

.text-center .display-5::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
}

.display-6 {
    font-weight: 700 !important;
    color: var(--accent) !important;
    background: none !important;
    -webkit-text-fill-color: var(--accent) !important;
    background-clip: unset !important;
}

.display-3, .display-4 {
    font-weight: 700;
    color: var(--text-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
    background-clip: unset !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.lead {
    color: var(--text-muted);
}

/* ========== ABOUT ========== */
.stat-box {
    padding: 2rem;
    border-radius: 4px;
    background: var(--bg-card);
    transition: all 0.4s ease;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.stat-box * {
    position: relative;
    z-index: 1;
}

/* ========== DISCIPLINES ========== */
.discipline-card {
    transition: all 0.4s ease;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-card);
    position: relative;
    cursor: pointer;
}

.discipline-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.discipline-card:hover::before {
    transform: scaleX(1);
}

.discipline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(200, 168, 78, 0.4);
    background: var(--bg-card-hover);
}

.discipline-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.discipline-card .card-title {
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.discipline-card .card-text {
    color: var(--text-muted) !important;
}

.discipline-card .icon-box {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: none;
    position: relative;
}

.discipline-card .icon-box::before {
    display: none;
}

.discipline-card:hover .icon-box {
    transform: scale(1.1);
    background: var(--accent);
    box-shadow: 0 10px 30px rgba(200, 168, 78, 0.3);
}

.discipline-card:hover .icon-box::before {
    display: none;
}

.discipline-card .icon-box i {
    color: var(--accent) !important;
    font-size: 2rem !important;
}

.discipline-card:hover .icon-box i {
    color: var(--bg-dark) !important;
}

/* ========== CALENDAR ========== */
.calendar-container {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
}

.event-card {
    background: var(--bg-card);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.event-card h4 {
    color: var(--text-white) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

.event-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-left-color: var(--accent-light);
    background: var(--bg-card-hover);
}

.event-date {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.75rem;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.event-card:hover .event-date {
    transform: none;
    box-shadow: 0 5px 15px rgba(200, 168, 78, 0.3);
}

/* ========== LOCATION ========== */
.location-info {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.location-info h3 {
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 168, 78, 0.3);
}

.map-container {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-subtle);
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

/* ========== SOCIAL BUTTONS ========== */
.btn-social {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s ease;
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.btn-social:hover::before {
    left: 100%;
}

.btn-facebook {
    background: #1877f2;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-youtube {
    background: #ff0000;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-social:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

/* ========== SOCIAL EMBEDS ========== */
.instagram-embed-container,
.facebook-embed-container {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.instagram-embed-container h3,
.facebook-embed-container h3 {
    color: var(--text-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem !important;
}

.instagram-embed-container:hover,
.facebook-embed-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(200, 168, 78, 0.3);
}

.instagram-feed-wrapper,
.facebook-feed-wrapper {
    max-width: 540px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.instagram-feed-wrapper iframe,
.facebook-feed-wrapper iframe {
    border-radius: 4px;
}

.facebook-feed-wrapper a img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.instagram-feed {
    margin-top: 1.5rem;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 1;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

/* ========== FOOTER ========== */
footer {
    background: var(--bg-dark) !important;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0;
    padding: 3rem 0 !important;
}

footer h5 {
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

/* ========== MODALS ========== */
.modal-content {
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.modal-header {
    background: var(--bg-dark);
    color: var(--accent);
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 4px 4px 0 0;
}

.modal-header .modal-title {
    color: var(--accent);
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    background: var(--bg-card);
    color: var(--text-light);
}

.modal-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
}

.form-label {
    color: var(--text-light);
}

.form-control {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    border-radius: 4px;
}

.form-control:focus {
    background: var(--bg-dark);
    border-color: var(--accent);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(200, 168, 78, 0.25);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--accent);
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    transition: all 0.4s ease;
    border-radius: 0;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 168, 78, 0.4);
}

.btn-info {
    background: var(--green);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-info:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.5);
    color: white;
}

.btn-success {
    background: var(--green);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0;
    color: white;
}

.btn-success:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.4);
}

.btn-outline-primary {
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 168, 78, 0.4);
    color: var(--bg-dark);
}

/* ========== LIST GROUP ========== */
.list-group-item {
    background: var(--bg-card);
    border-left: 4px solid var(--accent);
    border-color: var(--border-subtle);
    border-left-color: var(--accent);
    margin-bottom: 0.5rem;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.list-group-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

/* ========== PRESS & NEWS ========== */
.press-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(200, 168, 78, 0.3);
}

.press-video-container {
    position: relative;
    background: #000;
}

.video-thumbnail-link {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.video-thumbnail-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button-overlay {
    display: none;
}

.press-card-body {
    padding: 1.5rem;
}

.press-card-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(200, 168, 78, 0.3);
}

.news-card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.news-card .badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0;
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

/* ========== UTILITIES ========== */
.text-primary {
    color: var(--accent) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4) !important;
}

.rounded {
    border-radius: 4px !important;
}

.alert-danger {
    background: #b91c1c;
    color: white;
    border: none;
    border-radius: 4px;
}

.alert-success {
    background: var(--green);
    color: white;
    border: none;
    border-radius: 4px;
}

.img-fluid.rounded.shadow-lg {
    border: 1px solid var(--border-subtle);
    border-radius: 4px !important;
}

.h4, h3.h4 {
    color: var(--text-white);
}

/* ========== DISCIPLINE POPUP ========== */
.discipline-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--bg-card);
    border-radius: 4px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent);
}

.discipline-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.discipline-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.discipline-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.discipline-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.discipline-popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent) !important;
    background: none !important;
    -webkit-text-fill-color: var(--accent) !important;
    background-clip: unset !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.discipline-popup-close {
    background: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    color: var(--bg-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.discipline-popup-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(200, 168, 78, 0.4);
}

.discipline-popup-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.discipline-popup-content p {
    margin-bottom: 1rem;
}

.discipline-popup-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: none;
}

.discipline-popup-icon i {
    font-size: 2.5rem;
    color: var(--accent);
}

/* ========== CAROUSEL ========== */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(200, 168, 78, 0.3);
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(200, 168, 78, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(1.5);
}

.carousel-item img {
    border-radius: 4px;
}

/* ========== CALENDAR ========== */
.event-card {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.event-actions .btn-outline-primary {
    border-color: var(--accent);
    color: var(--accent);
}

.event-actions .btn-outline-primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.event-actions .btn-outline-success {
    border-color: var(--green-light);
    color: var(--green-light);
}

.event-actions .btn-outline-success:hover {
    background: var(--green-light);
    color: var(--text-white);
}

/* ========== DIRECTIVOS ========== */
.directivo-card {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directivo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(200, 168, 78, 0.4);
    background: var(--bg-card-hover);
}

.directivo-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.directivo-card:hover .directivo-image-wrapper {
    border-color: var(--accent-light);
    box-shadow: 0 0 30px rgba(200, 168, 78, 0.4);
    transform: scale(1.05);
}

.directivo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.directivo-card:hover .directivo-image {
    transform: scale(1.1);
}

.directivo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.directivo-cargo {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin: 0 auto 1rem;
}

.directivo-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    
    .hero-section {
        height: 80vh;
        min-height: 450px;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-social {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.75rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .navbar-brand {
        font-size: 0.7rem;
    }
    
    .navbar-brand img {
        height: 35px !important;
    }
    
    .navbar-nav {
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 4px;
    }
    
    .display-5 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem;
    }
    
    .lead {
        font-size: 0.95rem !important;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .discipline-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .discipline-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .discipline-card .card-text {
        font-size: 0.85rem;
    }

    .discipline-popup {
        padding: 1.5rem;
        max-width: 95%;
        margin: 1rem;
    }
    
    .discipline-popup-title {
        font-size: 1.2rem;
    }
    
    .discipline-popup-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .event-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .event-card h4 {
        font-size: 1.1rem;
    }
    
    .event-date {
        font-size: 0.85rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
        margin: 0.25rem 0;
        font-size: 0.8rem;
    }
    
    .directivo-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .directivo-image-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .directivo-cargo {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .directivo-nombre {
        font-size: 1rem;
    }
    
    .press-card {
        margin-bottom: 1.5rem;
    }
    
    .press-card-title {
        font-size: 1rem;
    }
    
    .press-card-body {
        padding: 1rem;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
    }
    
    .news-card-title {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    #aboutCarousel {
        min-height: auto;
        margin-bottom: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 8px;
    }
    
    .row.g-4 {
        gap: 1rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}
