/* ============================================
   WESTCOTTS DECORATING - BATHROOMS PAGE
   Part 1: Hero Section - Compact, Centered
   ============================================ */

/* ============================================
   BATHROOMS HERO SECTION
   ============================================ */
.westcotts-bathrooms-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/bathrooms-top.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
    color: #ecebe9;
    position: relative;
}

/* Subtle vignette */
.westcotts-bathrooms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.westcotts-bathrooms-hero-content {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.westcotts-bathrooms-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.westcotts-bathrooms-hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 auto;
    opacity: 0.92;
    max-width: 520px;
}

/* Bottom accent */
.westcotts-bathrooms-hero-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #af8c59;
    margin: 24px auto 0;
}

/* ============================================
   HERO RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .westcotts-bathrooms-hero {
        padding: 60px 0;
    }
    
    .westcotts-bathrooms-hero h1 {
        font-size: 2.25rem;
    }
    
    .westcotts-bathrooms-hero p {
        font-size: 1.0625rem;
    }
    
    .westcotts-bathrooms-hero-content::after {
        margin-top: 20px;
    }
}

/* ============================================
   HERO RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .westcotts-bathrooms-hero {
        padding: 55px 0;
        background-attachment: scroll;
    }
    
    .westcotts-bathrooms-hero-content {
        padding: 0 20px;
    }
    
    .westcotts-bathrooms-hero h1 {
        font-size: 1.875rem;
        margin-bottom: 14px;
    }
    
    .westcotts-bathrooms-hero p {
        font-size: 1rem;
    }
    
    .westcotts-bathrooms-hero-content::after {
        width: 50px;
        margin-top: 18px;
    }
}

/* ============================================
   HERO RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .westcotts-bathrooms-hero {
        padding: 45px 0;
    }
    
    .westcotts-bathrooms-hero-content {
        padding: 0 16px;
    }
    
    .westcotts-bathrooms-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .westcotts-bathrooms-hero p {
        font-size: 1rem;
    }
    
    .westcotts-bathrooms-hero-content::after {
        width: 40px;
        height: 2px;
        margin-top: 16px;
    }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .westcotts-bathrooms-hero {
        background-attachment: scroll;
    }
}
