/* Brand Pages Hero Image Fix - Ensures consistency with index page */

/* Hero section layout */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 0 0 40%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
    }
    
    .hero-image {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-image {
        max-width: 250px;
    }
    
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .hero-feature {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Floating icons are now handled by floating-icons-fix.css */

/* Fix button colors on brand pages */
.hero-cta-group a[href*="book"],
.cta-primary {
    background: #22c55e !important;
    color: white !important;
}

.hero-cta-group a[href^="tel:"],
.cta-secondary {
    background: #7c3aed !important;
    color: white !important;
}

.hero-cta-group a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}