/* ========================================
   SIMPLE & INVITING LEARNING CENTER DESIGN
   Using brand colors with warmer, friendlier feel
   ======================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations on page load */
.hero-content-simple {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-illustration {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.section-title-simple,
.section-subtitle {
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Section - Simple & Friendly */
.hero-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 235, 220, 0.85) 0%, rgba(232, 251, 255, 0.75) 55%, rgba(255, 248, 243, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.min-vh-80 {
    min-height: 80vh;
}

.welcome-badge {
    display: inline-block;
    background: white;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

.wave {
    display: inline-block;
    animation: wave-animation 1.5s ease-in-out infinite;
    font-size: 1.2rem;
}

@keyframes wave-animation {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}

.hero-title-simple {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-description-simple {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.6s ease-out both;
    transition: all var(--transition);
}

.info-item:nth-child(1) { animation-delay: 0.3s; }
.info-item:nth-child(2) { animation-delay: 0.4s; }
.info-item:nth-child(3) { animation-delay: 0.5s; }

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.info-icon {
    font-size: 1.8rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.info-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 217, 255, 0.1);
    top: 20%;
    left: 10%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 59, 59, 0.1);
    bottom: 20%;
    right: 15%;
    animation-delay: 1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 217, 61, 0.15);
    top: 40%;
    right: 25%;
    animation-delay: 2s;
}

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

.hero-image-placeholder {
    width: 350px;
    height: 350px;
    background: white;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 1;
}

.hero-image-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hero-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Programs Section - Clean Cards */
.programs-simple {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 249, 243, 0.92) 0%, rgba(255, 232, 222, 0.65) 100%);
}

.section-title-simple {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.program-card-simple {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.program-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.program-card-simple h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.program-card-simple p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Why Section */
.why-simple {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 232, 222, 0.7) 0%, rgba(232, 251, 255, 0.45) 100%);
}

.reason-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: all var(--transition);
}

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

.reason-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.reason-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
}

/* About Section */
.about-simple {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 249, 243, 0.92) 0%, rgba(255, 229, 217, 0.6) 100%);
}

.about-image-simple {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 229, 217, 0.85) 0%, rgba(232, 251, 255, 0.7) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.about-image-simple i {
    font-size: 8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.about-content-simple .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-simple {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.9) 0%, rgba(232, 251, 255, 0.6) 100%);
}

.contact-info-simple .lead {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-links-simple {
    display: flex;
    gap: 16px;
}

.social-links-simple a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.social-links-simple a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-simple {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

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

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
}

/* MaxedPixel Credit - Footer */
.maxedpixel-credit {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.credit-text {
    color: var(--text-light);
}

.credit-heart {
    color: #FF3B3B;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.credit-bolt {
    color: #FFD93D;
    animation: zap 2s ease-in-out infinite;
}

@keyframes zap {
    0%, 100% { transform: rotate(0deg); opacity: 1; }
    50% { transform: rotate(10deg); opacity: 0.8; }
}

.maxedpixel-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.maxedpixel-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.maxedpixel-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.maxedpixel-link:hover::after {
    width: 100%;
}

/* Enhanced Responsive Design */
@media (max-width: 1199px) {
    .program-card-simple {
        padding: 35px 25px;
    }
    
    .reason-card {
        padding: 35px 25px;
    }
}

@media (max-width: 991px) {
    .hero-title-simple {
        font-size: 2.2rem;
    }
    
    .hero-illustration {
        height: 350px;
        margin-top: 40px;
    }
    
    .hero-image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .hero-image-placeholder i {
        font-size: 4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-info {
        justify-content: center;
    }
    
    .section-title-simple {
        font-size: 2rem;
    }
    
    .about-image-simple {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .about-image-simple i {
        font-size: 6rem;
    }
}

@media (max-width: 767px) {
    .hero-simple {
        padding: 60px 0;
    }
    
    .programs-simple,
    .why-simple,
    .about-simple,
    .contact-simple {
        padding: 50px 0;
    }
    
    .program-card-simple,
    .reason-card {
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    .maxedpixel-credit {
        justify-content: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .hero-title-simple {
        font-size: 1.8rem;
    }
    
    .hero-description-simple {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .info-item {
        flex: 1 1 100%;
    }
    
    .contact-form-simple {
        padding: 30px 20px;
    }
    
    .welcome-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .section-title-simple {
        font-size: 1.75rem;
    }
    
    .program-emoji {
        font-size: 3rem;
    }
    
    .reason-icon {
        font-size: 2.5rem;
    }
    
    .hero-image-placeholder {
        width: 240px;
        height: 240px;
    }
    
    .hero-image-placeholder i {
        font-size: 3rem;
    }
}

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

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SMOOTH LINK HOVER EFFECTS
   ======================================== */

/* All Links - Simple & Smooth */
a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* Footer Links */
.footer-links a,
.footer-contact a {
    color: inherit;
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom a {
    color: var(--text-light);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links a,
.social-links-simple a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover,
.social-links-simple a:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Navigation Links - Simple Smooth */
.nav-link {
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
}

/* Contact Links */
.contact-item a {
    color: inherit;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ========================================
   CONTACT FORM VALIDATION & ANIMATIONS
   ======================================== */

/* Field Error Messages */
.field-error {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.field-error.show {
    display: block;
}

.field-error i {
    margin-right: 5px;
}

.form-control.error {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 59, 0.15);
}

.form-control.success {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.15);
}

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

/* Submit Button States */
#submitBtn {
    position: relative;
    overflow: hidden;
}

#submitBtn .btn-text,
#submitBtn .btn-loading {
    transition: all 0.3s ease;
}

#submitBtn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Success/Error Modal */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.modal-content-custom {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease-out;
}

.modal-icon.success {
    color: var(--accent-green);
}

.modal-icon.error {
    color: var(--secondary-color);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-message {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-close-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-close-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

/* Loading Spinner */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .modal-content-custom {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
}

/* ========================================
   LOGO STYLES
   ======================================== */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Fredoka', sans-serif;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    font-family: 'Fredoka', sans-serif;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-brand h5 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .site-logo {
        height: 45px;
    }
    
    .footer-logo {
        height: 60px;
    }
}

/* ========================================
   EVENTS PREVIEW SECTION
   ======================================== */

.events-preview-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.badge-simple {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.event-preview-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.event-preview-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.event-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-preview-card:hover .event-preview-image img {
    transform: scale(1.1);
}

.event-date-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-align: center;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-top: 2px;
}

.event-preview-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-preview-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.event-time {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-time i {
    color: var(--primary-color);
    margin-right: 6px;
    width: 16px;
}

.event-preview-content p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    flex: 1;
}

.event-price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 15px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .event-preview-image {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .events-preview-simple {
        padding: 50px 0;
    }
    
    .event-preview-image {
        height: 200px;
    }
    
    .event-preview-content h4 {
        font-size: 1.2rem;
    }
}

/* ========================================
   HERO & ABOUT IMAGE STYLES
   ======================================== */

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.about-main-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

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

@media (max-width: 991px) {
    .hero-main-image {
        max-height: 400px;
    }
    
    .about-main-image {
        max-height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-main-image {
        max-height: 300px;
    }
    
    .about-main-image {
        max-height: 280px;
    }
}

