/* Hero Title Override - Remove Blue and Reduce Size */

/* Remove Blue Text Shadow and Reduce Font Size */
.hero-title,
.hero-style1 .hero-title,
.hero-style2 .hero-title,
.hero-style3 .hero-title,
.hero-style4 .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 3 !important;
}

/* Desktop Large Screens - Reduced Size */
@media (min-width: 1400px) {
    .hero-title,
    .hero-style1 .hero-title,
    .hero-style2 .hero-title,
    .hero-style3 .hero-title,
    .hero-style4 .hero-title {
        font-size: 3rem !important; /* Reduced from 4rem */
        line-height: 1.1 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Desktop Medium Screens - Reduced Size */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title,
    .hero-style1 .hero-title,
    .hero-style2 .hero-title,
    .hero-style3 .hero-title,
    .hero-style4 .hero-title {
        font-size: 2.5rem !important; /* Reduced from 3.5rem */
        line-height: 1.15 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Tablet Screens - Reduced Size */
@media (max-width: 991px) {
    .hero-title,
    .hero-style1 .hero-title,
    .hero-style2 .hero-title,
    .hero-style3 .hero-title,
    .hero-style4 .hero-title {
        font-size: 2rem !important; /* Reduced from 2.5rem */
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Mobile Screens - Reduced Size */
@media (max-width: 767px) {
    .hero-title,
    .hero-style1 .hero-title,
    .hero-style2 .hero-title,
    .hero-style3 .hero-title,
    .hero-style4 .hero-title {
        font-size: 1.75rem !important; /* Reduced from 2rem */
        margin-bottom: 15px !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Small Mobile Screens - Reduced Size */
@media (max-width: 575px) {
    .hero-title,
    .hero-style1 .hero-title,
    .hero-style2 .hero-title,
    .hero-style3 .hero-title,
    .hero-style4 .hero-title {
        font-size: 1.5rem !important; /* Reduced from 1.8rem */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Remove Blue from Any Additional Hero Elements */
.hero-wrapper .btn,
.hero-style1 .btn,
.hero-style2 .btn,
.hero-style3 .btn,
.hero-style4 .btn,
.btn-group .btn {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    ) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

.hero-wrapper .btn:hover,
.hero-style1 .btn:hover,
.hero-style2 .btn:hover,
.hero-style3 .btn:hover,
.hero-style4 .btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    ) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}