/* ============================================
   LORETO HIGH SCHOOL - MODERN DESIGN THEME
   ============================================ */

:root {
    /* Color Palette */
    --primary-color: #1e3a8a;
    --primary-dark: #1e293b;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --accent-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --info-color: #0ea5e9;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

/* ============================================
   TOP BAR DESIGN
   ============================================ */

.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.top-bar-link:hover {
    color: white;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.social-link-top {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* ============================================
   MODERN NAVBAR DESIGN
   ============================================ */

.modern-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.modern-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.modern-navbar .navbar-brand {
    font-family: var(--font-heading);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.modern-navbar .navbar-brand:hover {
    color: var(--primary-light);
}

.modern-navbar .brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.modern-navbar .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.modern-navbar .brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modern-navbar .brand-location {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.modern-navbar .brand-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.modern-navbar .navbar-nav {
    gap: 0.5rem;
}

.modern-navbar .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
}

.modern-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    transition: var(--transition-base);
}

.modern-navbar .nav-link:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.modern-navbar .nav-link:hover::before {
    width: 70%;
}

.modern-navbar .nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
}

.modern-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-navbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-weight: 500;
}

.modern-navbar .dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.modern-navbar .navbar-toggler {
    border: 2px solid var(--text-dark);
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.modern-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
    outline: none;
}

.modern-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   PAGE TITLE SECTION
   ============================================ */

.page-title-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-title-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title-content .badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero-content .badge {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ============================================
   MODERN SLIDER
   ============================================ */

.modern-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.modern-slider .carousel-inner,
.modern-slider .carousel-item {
    height: 500px;
}

.modern-slider .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-in-out;
}

.modern-slider .carousel-item.active .slider-image {
    animation: kenBurns 8s ease-in-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.modern-slider .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 58, 138, 0.6) 100%);
    z-index: 1;
}

.modern-slider .slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.modern-slider .slider-text {
    color: white;
    max-width: 700px;
}

.modern-slider .slider-text h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.modern-slider .slider-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.modern-slider .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.modern-slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition-fast);
}

.modern-slider .carousel-indicators li.active {
    background-color: white;
    width: 35px;
    border-radius: 10px;
}

.modern-slider .slider-control-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modern-slider .carousel-control-prev,
.modern-slider .carousel-control-next {
    width: 70px;
    opacity: 1;
    z-index: 3;
}

.modern-slider .carousel-control-prev:hover .slider-control-icon,
.modern-slider .carousel-control-next:hover .slider-control-icon {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.modern-slider .slider-control-icon i {
    color: white;
    font-size: 1.25rem;
}

/* ============================================
   VISION, MISSION, MOTTO CARDS
   ============================================ */

.vmm-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.vmm-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.vmm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.vmm-icon.vision {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.vmm-icon.mission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.vmm-icon.motto {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.vmm-icon i {
    color: white;
}

.vmm-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-size: 1.75rem;
}

.vmm-card p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */

.feature-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

/* ============================================
   MODERN BUTTONS
   ============================================ */

.btn-modern {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: white;
}

.btn-modern-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-modern-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

/* ============================================
   MODERN CARDS
   ============================================ */

.modern-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

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

.modern-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.modern-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.modern-card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="footergrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footergrid)"/></svg>');
    opacity: 0.5;
}

.modern-footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.modern-footer ul li {
    margin-bottom: 0.75rem;
}

.modern-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-footer a:hover {
    color: white;
    transform: translateX(5px);
}

.modern-footer .social-links {
    display: flex;
    gap: 1rem;
}

.modern-footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.modern-footer .social-icon:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991px) {
    .top-bar {
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .top-bar-right {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .modern-navbar {
        padding: 0.5rem 0;
    }

    .modern-navbar .navbar-nav {
        gap: 0;
        padding: 1rem 0;
        background: white;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
    }

    .modern-navbar .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0;
    }

    .modern-navbar .brand-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .modern-navbar .brand-name {
        font-size: 1.1rem;
    }

    .modern-navbar .brand-location {
        font-size: 0.8rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .vmm-section {
        padding: 3rem 0;
    }

    .vmm-card {
        margin-bottom: 2rem;
    }

    .hero-section {
        min-height: 350px !important;
    }

    /* Slider Responsive */
    .modern-slider {
        height: 400px;
    }

    .modern-slider .carousel-inner,
    .modern-slider .carousel-item {
        height: 400px;
    }

    .modern-slider .slider-text h1 {
        font-size: 2.25rem;
    }

    .modern-slider .slider-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .social-link-top {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .modern-navbar .brand-text {
        gap: 0;
    }

    .modern-navbar .brand-name {
        font-size: 1rem;
    }

    .modern-navbar .brand-location {
        font-size: 0.75rem;
    }

    .feature-section {
        padding: 3rem 0;
    }

    .vmm-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 2rem !important;
    }

    .modern-card {
        padding: 1.5rem !important;
    }

    /* Slider Responsive */
    .modern-slider {
        height: 350px;
    }

    .modern-slider .carousel-inner,
    .modern-slider .carousel-item {
        height: 350px;
    }

    .modern-slider .slider-text h1 {
        font-size: 1.75rem;
    }

    .modern-slider .slider-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .modern-slider .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .modern-slider .slider-control-icon {
        width: 40px;
        height: 40px;
    }

    .modern-slider .slider-control-icon i {
        font-size: 1rem;
    }

    .modern-slider .carousel-control-prev,
    .modern-slider .carousel-control-next {
        width: 50px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 300px !important;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .modern-navbar .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    /* Slider Responsive */
    .modern-slider {
        height: 300px;
    }

    .modern-slider .carousel-inner,
    .modern-slider .carousel-item {
        height: 300px;
    }

    .modern-slider .slider-text h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .modern-slider .slider-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .modern-slider .btn-modern {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }

    .modern-slider .btn-modern.me-3 {
        margin-bottom: 0.75rem;
        margin-right: 0 !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f59e0b 100%);
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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