/* Modern Hero Section - CSS Variables */
:root {
    --hero-bg: #FEF4DE;
    --hero-primary: #F39F5F;
    --hero-secondary: #385469;
    --hero-text: #2C3E50;
    --hero-light-text: #5A6C7D;
    --hero-accent: #FFB84D;
    --hero-white: #FFFFFF;
}

/* Modern Hero Section */
.modern-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--hero-bg) 0%, #FFE8C5 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 650px;
    margin-top: 0;
}

/* Decorative Background Elements */
.hero-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--hero-primary);
    top: -100px;
    right: 10%;
}

.hero-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--hero-secondary);
    bottom: -50px;
    left: 5%;
}

.hero-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--hero-accent);
    top: 50%;
    right: 5%;
}

/* Hero Container */
.modern-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* Left Content */
.modern-hero-left {
    flex: 1;
    max-width: 550px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--hero-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.hero-main-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hero-secondary);
    margin-bottom: 20px;
    font-family: 'Poppins', 'Arial', sans-serif;
}

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

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--hero-light-text);
    margin-bottom: 35px;
    max-width: 500px;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-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;
}

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

.hero-btn-primary {
    background: var(--hero-primary);
    color: var(--hero-white);
}

.hero-btn-primary:hover {
    background: #E88D4D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 159, 95, 0.4);
}

.hero-btn-secondary {
    background: var(--hero-secondary);
    color: var(--hero-white);
}

.hero-btn-secondary:hover {
    background: #2C4A5C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 84, 105, 0.4);
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Right Content - Image Area */
.modern-hero-right {
    position: relative;
    flex: 0 0 450px;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Floating Decorative Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.floating-element img,
.floating-element svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.float-bee {
    width: 60px;
    height: 60px;
    top: 5%;
    left: -10%;
    animation: float 2.5s ease-in-out infinite;
}

.float-rainbow {
    width: 120px;
    height: 80px;
    top: 10%;
    right: -15%;
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.float-pencil {
    width: 70px;
    height: 70px;
    top: 60%;
    right: -5%;
    animation: float 3s ease-in-out infinite 1s;
}

.float-blocks {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 5%;
    animation: float 4s ease-in-out infinite 0.8s;
}

.float-star {
    width: 40px;
    height: 40px;
    top: 30%;
    left: -5%;
    animation: rotate 10s linear infinite;
}

.float-circles {
    width: 50px;
    height: 50px;
    bottom: 25%;
    right: 10%;
    animation: float 3.2s ease-in-out infinite 1.5s;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero-section {
        padding: 120px 0 60px;
    }

    .modern-hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .modern-hero-left {
        max-width: 100%;
        text-align: center;
    }

    .modern-hero-right {
        flex: 0 0 auto;
        order: -1;
    }

    .hero-main-heading {
        font-size: 42px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        padding: 100px 0 50px;
        min-height: 500px;
    }

    .hero-main-heading {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        max-width: 350px;
    }

    .float-bee,
    .float-rainbow,
    .float-pencil {
        display: none;
    }

    .hero-circle-1,
    .hero-circle-3 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .hero-main-heading {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 11px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}
