/* Hero Image Sizing Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.2);
}

/* Desktop specific sizing */
@media (min-width: 1200px) {
    .hero-flex {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        flex: none;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        max-width: 1000px;
        padding: 20px 0;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
}

/* Large desktop sizing */
@media (min-width: 1400px) {
    .hero-image {
        max-width: 1200px;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
}

/* Tablet sizing */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero-image {
        max-width: 800px;
        padding: 30px 0;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* Fix navbar overlap on tablet */
    .hero {
        padding-top: 120px !important;
    }
}

/* Mobile sizing */
@media (max-width: 767px) {
    .hero-image {
        max-width: 100%;
        padding: 20px 15px 40px 15px;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    /* Fix navbar overlap on mobile */
    .hero {
        padding-top: 120px !important;
        min-height: calc(100vh - 120px) !important;
    }
    
    .hero-content {
        padding-top: 20px;
    }
}

/* Small mobile sizing */
@media (max-width: 480px) {
    .hero-image {
        padding: 15px 10px 30px 10px;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    /* Extra padding for small mobile to ensure no overlap */
    .hero {
        padding-top: 130px !important;
        min-height: calc(100vh - 130px) !important;
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero-content h1 {
        margin-bottom: 30px !important;
    }
} 