/* ===== Hero Section Styles ===== */
.hero-section {
    max-width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('../../img/Sprinkle-Water-scaled-1.webp') center center/cover no-repeat;
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,32,39,0.6); /* dark overlay, 0.6 opacity */
    z-index: 1;
}

.hero-content-wrapper, .hero-content, .hero-title, .hero-breadcrumb {
    position: relative;
    z-index: 2;
}

/* Full-width content wrapper */
.hero-content-wrapper {
    width: 100%;
    padding: 0 20px;
}

/* Center-aligned content container */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-family: var(--primary-heading-font), var(--fallback-font);
}

/* Breadcrumb Styles */
.hero-breadcrumb ol {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb li {
    display: flex;
    align-items: center;
    margin: 0 10px;
    font-size: 1rem;
    font-family: var(--primary-body-font), var(--fallback-font);
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--primary-body-font), var(--fallback-font);
}

.hero-breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.hero-breadcrumb i {
    margin: 0 5px;
    font-size: 0.8em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-breadcrumb li {
        font-size: 0.9rem;
    }
}