
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Fredoka+One&display=swap');

:root {
    --primary: #003399;
    --primary-light: #0044cc;
    --primary-dark: #002266;
    --secondary: #FFD700;
    --secondary-light: #FFE44D;
    --secondary-dark: #E6C200;
    --accent: #FF6B6B;
    --text: #333333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}
h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
/* Custom animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

.floating {
    animation: float 4s ease-in-out infinite;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
/* Interactive elements */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 51, 153, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 51, 153, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(255, 215, 0, 0.3);
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--secondary);
}
/* Gallery hover effect */
.gallery-image {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-image:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 51, 153, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover::before {
    opacity: 1;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Utility classes */
.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.rounded-xl {
    border-radius: 12px;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.transition {
    transition: all 0.3s ease;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}
