/* Hero Overrides - This file contains styles to override conflicting styles in custom.css */

/* Override the hero-fullscreen-section styles from custom.css */
.hero-fullscreen-section {
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.hero-fullscreen-wrapper {
    height: 100vh !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Override the hero content styles */
.hero-fullscreen-section .hero-content {
    position: absolute !important;
    top: 80% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 1200px !important;
    text-align: center !important;
    color: #fff !important;
    z-index: 10 !important;
    padding: 30px !important;
}

/* Override the hero button styles */
.hero-fullscreen-section .hero-btn {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    text-align: center !important;
    z-index: 10 !important;
    margin-top: 30px !important;
    transform: none !important;
}

/* Override the animation for the button */
.hero-fullscreen-section .hero-btn .theme-btn {
    animation: none !important;
    padding: 12px 25px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    background-color: #F74F22 !important;
    color: #fff !important;
    border: 2px solid #F74F22 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.hero-fullscreen-section .hero-btn .theme-btn:hover {
    animation: none !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

/* Override the title and subtitle styles */
.hero-content .slide-title span {
    color: #86f0f8 !important;
    font-family: 'Edu AU VIC WA NT Hand', cursive !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 15px !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
}

.hero-content .slide-sub-title h2 {
    font-size: 60px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-content .slide-sub-title h2 {
        font-size: 42px !important;
    }

    .hero-details {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
    }
}

@media (max-width: 767px) {
    .hero-content .slide-title span {
        font-size: 20px !important;
    }

    .hero-content .slide-sub-title h2 {
        font-size: 32px !important;
    }

    .hero-details>div {
        font-size: 16px !important;
        padding: 6px 12px !important;
    }

    .hero-fullscreen-section .hero-btn .theme-btn {
        padding: 10px 20px !important;
        font-size: 16px !important;
    }
}