/* ==================== LIGHT THEME - MODERN SCHOOL WEBSITE ==================== */
:root {
    --bg-primary: #f9fafb;
    --bg-secondary: #f3f4f6;
    --bg-tertiary: #e5e7eb;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font);
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==================== FIXED HEADER ==================== */
.main-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--text-primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--accent);
    transform: scale(1.02);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span:nth-child(2) {
    width: 70%;
}

.menu-toggle:hover .hamburger span:nth-child(2) {
    width: 100%;
}

.menu-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--accent);
}

.logo img {
    height: 50px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--bg-tertiary);
    color: var(--accent);
}

.contact-link i {
    font-size: 16px;
    color: var(--accent);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    padding: 5px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
}

.lang-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--bg-primary);
}

.lang-btn.active {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.lang-btn img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

/* Header Social */
.header-social {
    display: flex;
    gap: 8px;
}

.header-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    color: var(--text-secondary);
    transition: var(--transition);
}

.header-social a:hover {
    background: var(--accent);
    color: #fff;
}

/* Search Toggle */
.search-toggle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: none;
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle:hover {
    background: var(--accent);
    color: #fff;
}

/* ==================== SIDE MENU (DRAWER) ==================== */
.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 380px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.side-menu.open {
    left: 0;
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border);
    background: var(--accent);
    color: #fff;
}

.side-menu-logo {
    font-size: 18px;
    font-weight: 600;
}

.side-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.side-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Side Menu Navigation */
.side-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.side-menu-nav a {
    display: flex;
    align-items: center;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.side-menu-nav a:hover {
    background: var(--bg-tertiary);
    border-left-color: var(--accent);
    color: var(--accent);
    padding-left: 35px;
}

.side-menu-nav a .nav-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Side Menu Footer */
.side-menu-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.side-menu-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.side-menu-contact i {
    color: var(--accent);
    width: 16px;
}

.side-menu-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.side-menu-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius);
    color: var(--text-secondary);
    transition: var(--transition);
}

.side-menu-social a:hover {
    background: var(--accent);
    color: #fff;
}

/* Side Menu Overlay */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==================== ACCESSIBILITY PANEL ==================== */
.accessibility-panel {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.accessibility-toggle {
    background: var(--accent);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-toggle:hover {
    background: var(--accent-dark);
    width: 60px;
}

.accessibility-options {
    position: absolute;
    left: 50px;
    top: -80px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 220px;
    display: none;
    box-shadow: var(--shadow-xl);
}

.accessibility-options.show {
    display: block;
}

.accessibility-options h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
}

.accessibility-options button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-primary);
    transition: var(--transition);
}

.accessibility-options button:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.show {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 600px;
}

.close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    background: var(--danger);
    color: #fff;
}

.search-form {
    display: flex;
    gap: 15px;
}

.search-form input {
    flex: 1;
    padding: 20px 25px;
    font-size: 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-form button {
    padding: 20px 35px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--accent-dark);
}

/* ==================== SLIDER ==================== */
#main-slider {
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
}

#main-slider .carousel-item {
    height: 500px;
}

#main-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 50%, var(--accent-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.slider-placeholder h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider-placeholder p {
    font-size: 20px;
    opacity: 0.9;
}

.carousel-caption {
    background: var(--bg-primary);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    max-width: 550px;
    box-shadow: var(--shadow-xl);
}

.carousel-caption h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    border-radius: var(--radius);
    opacity: 1;
    box-shadow: var(--shadow);
}

.carousel-control-prev { left: 25px; }
.carousel-control-next { right: 25px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0.3);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}

/* ==================== SECTIONS ==================== */
.quick-info-section,
.news-section,
.events-section,
.gallery-section {
    padding: 80px 0;
}

.events-section {
    background: var(--bg-tertiary);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* ==================== QUICK INFO BOXES ==================== */
.quick-info-box {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    margin-bottom: 25px;
}

.quick-info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.quick-info-box i {
    font-size: 45px;
    color: var(--accent);
    margin-bottom: 15px;
}

.quick-info-box h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-info-box p {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* ==================== NEWS CARDS ==================== */
.news-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-body {
    padding: 25px;
}

.news-card-date {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-title a {
    color: var(--text-primary);
}

.news-card-title a:hover {
    color: var(--accent);
}

.news-card-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-card-link {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-card-link:hover {
    gap: 12px;
}

/* ==================== EVENT CARDS ==================== */
.event-card {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
}

.event-date {
    background: var(--accent);
    color: #fff;
    padding: 25px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.event-info {
    padding: 25px;
    flex: 1;
}

.event-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.event-location {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-location i {
    color: var(--accent);
}

/* ==================== GALLERY ==================== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 36px;
    color: #fff;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-filters .btn {
    margin: 5px;
    padding: 12px 25px;
    border-radius: 30px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.gallery-filters .btn:hover,
.gallery-filters .btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
    background: transparent;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a:hover {
    color: #fff;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== CONTACT & FORMS ==================== */
.contact-info {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--accent);
    font-size: 18px;
    width: 20px;
}

.contact-form {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: var(--bg-primary);
}

.contact-form .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ==================== DOCUMENTS ==================== */
.document-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    transition: var(--transition);
}

.document-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.document-icon i {
    font-size: 22px;
    color: #fff;
}

.document-info {
    flex: 1;
}

.document-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.document-category {
    color: var(--text-muted);
    font-size: 13px;
}

.document-download {
    padding: 12px 25px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.document-download:hover {
    background: var(--accent-dark);
    color: #fff;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.sidebar h4 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    color: var(--text-primary);
}

.sidebar-news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-thumb {
    width: 65px;
    height: 65px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-news-title {
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-news-title a {
    color: var(--text-primary);
}

.sidebar-news-title a:hover {
    color: var(--accent);
}

.sidebar-news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.main-footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 8px;
}

.main-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.main-footer i {
    color: var(--accent-light);
    margin-right: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.main-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

#footer-text {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    border-radius: var(--radius);
    padding: 12px 28px;
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: #fff;
}

/* ==================== MODAL ==================== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 25px;
}

.modal-body {
    padding: 25px;
}

/* ==================== UTILITIES ==================== */
.no-data {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
}

.no-data i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
    display: block;
}

.alert-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 4000;
    min-width: 300px;
}

/* Accessibility Modes */
body.grayscale { filter: grayscale(100%); }
body.high-contrast { filter: contrast(1.4); }
body.negative { filter: invert(100%); }
body.underline-links a { text-decoration: underline !important; }
body.readable-font, body.readable-font * { font-family: Arial, sans-serif !important; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    .header-contact {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .header-inner {
        padding: 0 20px;
    }
    
    .logo span {
        display: none;
    }
    
    #main-slider .carousel-item,
    .slider-placeholder {
        height: 350px;
    }
    
    .slider-placeholder h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }
    
    .main-header-fixed {
        height: 70px;
    }
    
    .menu-text {
        display: none;
    }
    
    .menu-toggle {
        padding: 12px 14px;
    }
    
    .header-social {
        display: none;
    }
    
    .side-menu {
        width: 100%;
        left: -100%;
    }
    
    #main-slider .carousel-item,
    .slider-placeholder {
        height: 280px;
    }
    
    .slider-placeholder h2 {
        font-size: 26px;
    }
    
    .carousel-caption {
        padding: 20px;
    }
    
    .carousel-caption h3 {
        font-size: 20px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        gap: 10px;
        padding: 15px;
    }
    
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .document-item {
        flex-wrap: wrap;
    }
    
    .document-download {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .header-inner {
        padding: 0 15px;
    }
    
    .language-switcher {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 10px;
    }
    
    .quick-info-box {
        padding: 25px 15px;
    }
    
    .quick-info-box p {
        font-size: 26px;
    }
}
