:root {
    --sadc-deep-blue: #1b2b42;
    --sadc-blue: #124a99;
    --sadc-green: #1a8f58;
    --sadc-gold: #c99a00;
    --sadc-light-blue: #4A90E2;
    --sadc-dark-green: #004d26;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    padding-top: 175px;
}

/* Top Navigation - Fixed */
.top-navbar {
    background: var(--sadc-deep-blue);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    min-height: 75px;
    border-bottom: none;
}

.top-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.top-navbar .nav-link:hover {
    color: var(--sadc-gold) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.navbar-toggler-icon {
    color: white;
}

/* Main Header - Fixed directly below top navbar */
.main-header {
    background: var(--sadc-blue);
    position: fixed;
    top: 75px;
    width: 100%;
    z-index: 1020;
    min-height: 100px;
    border-bottom: 5px solid var(--sadc-gold);
    box-shadow: 0 4px 20px rgba(18, 74, 153, 0.3);
}

.main-header .navbar {
    padding: 0;
    min-height: 100px;
}

.main-header .navbar-brand img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-header .navbar-brand:hover img {
    transform: scale(1.05);
}

.main-header .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    padding: 1.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-header .nav-link:hover,
.main-header .nav-link:focus {
    color: var(--sadc-gold) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* .main-header .nav-link.active {
    color: var(--sadc-gold) !important;
    background-color: rgba(255, 255, 255, 0.15);
} */

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

.main-header .nav-link:hover::after {
    width: 80%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 10px;
    margin-top: 0;
    border-top: 3px solid var(--sadc-gold);
}

.dropdown-item {
    color: var(--sadc-blue);
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--sadc-gold), #e6b800);
    color: white;
    transform: translateX(5px);
}

/* Search Styles */
.search-container {
    position: relative;
    margin-left: 1rem;
}

.search-icon {
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.search-icon:hover {
    color: var(--sadc-gold);
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.search-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 43, 66, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-expanded.active {
    opacity: 1;
    visibility: visible;
}

.search-bar {
    font-size: 2rem;
    padding: 1.5rem 2rem;
    border: 3px solid var(--sadc-gold);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.search-bar:focus {
    outline: none;
    border-color: var(--sadc-green);
    box-shadow: 0 0 30px rgba(201, 154, 0, 0.3);
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.close-search {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.close-search:hover {
    color: var(--sadc-gold);
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg) scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(27, 43, 66, 0.85), rgba(18, 74, 153, 0.75)), url('../images/sadc_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
}

.hero-content {
    width: 100%;
    z-index: 2;
}

.hero-text {
    color: white;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--sadc-gold);
    margin-bottom: 1rem;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Quick Access Cards */
.hero-actions {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.quick-access-card {
    background: rgba(255, 255, 255, 0.822);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--sadc-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 0, 0.1), transparent);
    transition: left 0.5s;
}

.quick-access-card:hover::before {
    left: 100%;
}

.quick-access-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(201, 154, 0, 0.3);
    border-color: var(--sadc-gold);
    color: var(--sadc-blue);
}

.quick-access-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--sadc-blue), var(--sadc-light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.quick-access-card:hover .quick-access-icon {
    background: linear-gradient(135deg, var(--sadc-green), var(--sadc-dark-green));
    transform: rotate(360deg) scale(1.1);
}

.quick-access-icon i {
    font-size: 2rem;
    color: white;
}

.quick-access-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sadc-blue);
}

.quick-access-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Video Player Container */
.video-player-container {
    width: 100%;
}

.video-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

/* Video Controls Overlay (Large Play Button) */
.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-controls-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-large {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: rgba(201, 154, 0, 0.9);
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 154, 0, 0.4);
}

.play-button-large:hover {
    background: rgba(201, 154, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 154, 0, 0.6);
}

.play-button-large i {
    margin-left: 5px;
}

/* Custom Video Controls */
.video-custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-custom-controls {
    opacity: 1;
}

.btn-video-control {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-video-control:hover {
    background: rgba(201, 154, 0, 0.8);
    color: white;
}

.video-progress {
    position: relative;
    height: 6px;
}

.video-progress-bar {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.video-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--sadc-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--sadc-gold);
}

.video-progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--sadc-gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.video-progress-bar::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--sadc-gold);
}

.video-time {
    color: white;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}

/* Fullscreen styles */
.video-wrapper:fullscreen {
    width: 100%;
    height: 100%;
}

.video-wrapper:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.video-wrapper:-moz-full-screen {
    width: 100%;
    height: 100%;
}

.video-wrapper:fullscreen video,
.video-wrapper:-webkit-full-screen video,
.video-wrapper:-moz-full-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper:fullscreen .video-custom-controls,
.video-wrapper:-webkit-full-screen .video-custom-controls,
.video-wrapper:-moz-full-screen .video-custom-controls {
    opacity: 1;
}

/* Video Thumbnail Styles */
.video-thumbnail-container {
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--sadc-gold);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-thumbnail-container:hover .play-button-overlay {
    opacity: 0.9;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(201, 154, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.video-modal-content video {
    width: 100%;
    display: block;
}

.video-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-close:hover {
    color: var(--sadc-gold);
    transform: rotate(90deg);
}

/* Section Styling */
.section-title {
    color: var(--sadc-blue);
    border-bottom: 3px solid var(--sadc-green);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--sadc-gold);
    animation: slideRight 0.8s ease;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--sadc-green), var(--sadc-dark-green));
    color: white;
    font-weight: bold;
    border: none;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

/* Button Styles */
.btn-sadc-primary {
    background: linear-gradient(135deg, var(--sadc-blue), var(--sadc-light-blue));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-sadc-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.btn-sadc-primary:hover {
    background: linear-gradient(135deg, var(--sadc-green), var(--sadc-dark-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
}

.btn-sadc-secondary {
    background: linear-gradient(135deg, var(--sadc-green), var(--sadc-dark-green));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-sadc-secondary:hover {
    background: linear-gradient(135deg, var(--sadc-gold), #e6b800);
    color: var(--sadc-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Librarian Message */
.librarian-message {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid var(--sadc-green);
    padding: 40px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Opening Hours */
.opening-hours {
    background: linear-gradient(135deg, var(--sadc-blue), var(--sadc-light-blue));
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.opening-hours h5 {
    margin-bottom: 25px;
    font-weight: bold;
}

.time-row {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.time-row:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 15px;
    border-radius: 8px;
}

/* News Cards */
.news-card {
    border-left: 4px solid var(--sadc-blue);
    transition: all 0.3s ease;
}

.news-card:hover {
    border-left-color: var(--sadc-gold);
}

/* SADC Centres List */
.centre-list-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.centre-list-card:hover {
    box-shadow: 0 10px 30px rgba(18, 74, 153, 0.15);
    transform: translateY(-5px);
}

.centres-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.centre-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(18, 74, 153, 0.1);
    transition: all 0.3s ease;
}

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

.centre-item:hover {
    padding-left: 10px;
    background: rgba(18, 74, 153, 0.03);
    border-radius: 8px;
}

.centre-item i {
    color: var(--sadc-gold);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 20px;
    transition: all 0.3s ease;
}

.centre-item:hover i {
    color: var(--sadc-green);
    transform: scale(1.2);
}

.centre-info {
    flex: 1;
}

.centre-info h6 {
    color: var(--sadc-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.centre-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.centre-info p::before {
    content: '📍';
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--sadc-blue), var(--sadc-deep-blue));
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sadc-green), var(--sadc-gold), var(--sadc-green));
}

.footer h5 {
    color: var(--sadc-gold);
    margin-bottom: 25px;
    font-weight: bold;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--sadc-gold);
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--sadc-gold);
    transform: translateY(-3px);
    color: var(--sadc-blue);
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border: 2px dashed #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: bold;
    min-height: 200px;
    transition: all 0.3s ease;
}

.placeholder-img:hover {
    background: linear-gradient(135deg, #dee2e6, #ced4da);
    transform: scale(1.02);
}

/* Contact Info Styling */
.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    width: 20px;
    color: var(--sadc-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        width: 0;
    }
    to {
        width: 50%;
    }
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    body {
        padding-top: 145px;
    }
    
    .top-navbar {
        min-height: 60px;
    }
    
    .main-header {
        top: 60px;
        min-height: 85px;
    }
    
    .main-header .navbar {
        min-height: 85px;
    }
    
    .main-header .nav-link {
        padding: 1rem 0.75rem !important;
        font-size: 0.85rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .quick-access-grid {
        gap: 1rem;
    }
    
    .quick-access-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 115px;
    }
    
    .top-navbar {
        min-height: 50px;
    }
    
    .main-header {
        top: 50px;
        min-height: 65px;
    }
    
    .main-header .navbar {
        min-height: 65px;
    }
    
    .main-header .navbar-brand img {
        height: 45px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .hero-text {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .quick-access-card {
        padding: 1.5rem 1rem;
    }
    
    .quick-access-icon {
        width: 60px;
        height: 60px;
    }
    
    .quick-access-icon i {
        font-size: 1.5rem;
    }
    
    .search-bar {
        font-size: 1.5rem;
        width: 95%;
        padding: 1rem 1.5rem;
    }
    
    .navbar-nav {
        background: rgba(27, 43, 66, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-close {
        top: -40px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 110px;
    }
    
    .top-navbar {
        min-height: 45px;
    }
    
    .main-header {
        top: 45px;
        min-height: 65px;
    }
    
    .main-header .navbar {
        min-height: 65px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-access-card {
        padding: 1.5rem;
    }
    
    .flag-container {
        height: 150px;
    }
    
    .librarian-message {
        padding: 25px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Focus states for accessibility */
.keyboard-navigation *:focus {
    outline: 2px solid var(--sadc-gold);
    outline-offset: 2px;
}