/* ===============================================
   WANDA SCHOOL - MAIN STYLESHEET
   Theme: White & Yellow with Red & Black accents
   =============================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-yellow: #FFC107;
    --primary-yellow-dark: #FFA000;
    --primary-yellow-light: #FFECB3;
    
    /* Secondary Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    
    /* Accent Colors */
    --accent-red: #DC3545;
    --accent-red-dark: #C82333;
    --accent-black: #212529;
    --dark-gray: #343A40;
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --text-light: #ADB5BD;
    
    /* Gradients */
    --gradient-yellow: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 160, 0, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-yellow);
    border-radius: 2px;
    animation: titleUnderline 0.6s ease-out;
}

@keyframes titleUnderline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all var(--transition-normal);
    background-color: var(--white) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-normal);
}

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

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-black);
    text-shadow: none;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-yellow);
    transition: width var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-yellow-dark);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-yellow);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    background-color: var(--primary-yellow-dark);
    border-color: var(--primary-yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* ===== HERO SECTIONS ===== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.7) 0%, rgba(255, 160, 0, 0.8) 100%);
    z-index: 1;
    animation: overlayPulse 3s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1,
.hero-content .display-3,
.hero-content .display-4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

.hero-content p {
    font-family: 'Poppins', sans-serif !important;
}

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

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.7) 0%, rgba(255, 193, 7, 0.6) 100%);
}

/* ===== FEATURE BOXES ===== */
.feature-box {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow-light);
}

/* ===== PROGRAM CARDS ===== */
.program-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-yellow);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow-light);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ===== NEWS/BLOG CARDS ===== */
.news-card,
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
}

.news-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.news-card img,
.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover img,
.blog-card:hover img {
    transform: scale(1.1);
}

.news-content,
.blog-content {
    padding: 1.5rem;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border-left: 4px solid var(--primary-yellow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-yellow-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stars i {
    color: var(--primary-yellow);
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.stars i:nth-child(1) { animation-delay: 0s; }
.stars i:nth-child(2) { animation-delay: 0.1s; }
.stars i:nth-child(3) { animation-delay: 0.2s; }
.stars i:nth-child(4) { animation-delay: 0.3s; }
.stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-yellow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ctaCircle 20s linear infinite;
}

@keyframes ctaCircle {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-card img {
    border: 4px solid var(--primary-yellow-light);
    transition: all var(--transition-normal);
}

.team-card:hover img {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.team-info h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

/* ===== MISSION & VISION BOXES ===== */
.mission-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow-light);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== VALUE CARDS ===== */
.value-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow-light);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-yellow-light) 100%);
}

.value-card i {
    transition: transform var(--transition-normal);
}

.value-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ===== FACILITY CARDS ===== */
.facility-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-yellow);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.facility-card:hover .facility-icon {
    background: var(--gradient-yellow);
    transform: rotate(5deg);
}

.facility-icon i {
    font-size: 2rem;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow-light);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-yellow);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

/* ===== ACTIVITY CARDS ===== */
.activity-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow-light);
}

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.activity-card:hover .activity-icon {
    transform: rotate(360deg);
}

.activity-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* ===== FORMS ===== */
.form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.form-check-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* ===== REQUIREMENTS & INFO BOXES ===== */
.requirements-box,
.info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-yellow);
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

.requirements-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li:hover {
    padding-left: 10px;
    background: var(--primary-yellow-light);
}

/* ===== FEE TABLE ===== */
.fee-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fee-table thead {
    background: var(--gradient-yellow);
    color: var(--white);
}

.fee-table tbody tr {
    transition: all var(--transition-fast);
}

.fee-table tbody tr:hover {
    background: var(--primary-yellow-light);
    transform: scale(1.02);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow-light);
}

.contact-info-card a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--primary-yellow-dark);
}

/* ===== MAP CONTAINER ===== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeIn 1s ease-out;
}

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

/* ===== GALLERY ===== */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-card:hover {
    box-shadow: var(--shadow-xl);
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(33, 37, 41, 0.9), transparent);
}

.filter-btn {
    margin: 0.25rem;
    transition: all var(--transition-normal);
}

.filter-btn.active {
    background: var(--gradient-yellow);
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox-modal {
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-prev,
.lightbox-next {
    transition: all var(--transition-normal);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-yellow) !important;
}

/* ===== BLOG MODALS ===== */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-yellow);
    color: var(--white);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-body img {
    border-radius: 10px;
}

/* ===== ACCORDION ===== */
.accordion-item {
    border: 2px solid var(--light-gray);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    font-weight: 600;
    background-color: var(--white);
    border: none;
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-yellow);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* ===== BADGES ===== */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 50px;
}

.program-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

/* ===== ALERTS ===== */
.alert {
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow-sm);
}

.alert-warning {
    background-color: var(--primary-yellow-light);
    color: var(--text-primary);
}

.alert-info {
    background-color: #D1ECF1;
    color: var(--text-primary);
}

.alert-success {
    background-color: #D4EDDA;
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--accent-black) !important;
}

footer h5 {
    color: var(--white) !important;
    font-weight: 600;
}

footer p {
    color: var(--white) !important;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--white) !important;
    text-decoration: none;
    transition: all var(--transition-fast);
}

footer a:hover {
    color: var(--primary-yellow) !important;
    transform: translateX(5px);
}

.social-links a,
.social-links-large a {
    transition: all var(--transition-normal);
    display: inline-block;
}

.social-links a:hover,
.social-links-large a:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary-yellow) !important;
}

/* ===== FEATURED POST ===== */
.featured-post {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-yellow-light);
    animation: fadeInUp 0.8s ease-out;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    animation: fadeIn 0.3s ease-out;
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
        background: var(--white);
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .program-card,
    .news-card,
    .blog-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle i {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .display-3,
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .process-step {
        margin-bottom: 3rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .btn,
    .cta-section,
    footer,
    .back-to-top {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-overlay {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-yellow {
    color: var(--primary-yellow);
}

.bg-yellow {
    background-color: var(--primary-yellow);
}

.bg-yellow-light {
    background-color: var(--primary-yellow-light);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform var(--transition-normal);
}

.hover-shadow:hover {
    box-shadow: var(--shadow-xl);
    transition: box-shadow var(--transition-normal);
}

/* ===== END OF STYLESHEET ===== */
