/* ============================================================================
   YELLOWKEY HOMEPAGE STYLES - CLEAN & MODERN
   ============================================================================

   Sleek, professional hero sections with excellent readability
   Version: 5.0 - Clean Design
   Last Updated: 2025-11-22
   ============================================================================ */

/* ============================================================================
   BASE HERO SECTIONS - CLEAN LAYOUT
   ============================================================================ */


 

/* Hero 1: Property Owners - Deep Navy */
#hero-property-owners {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #ffffff;
}

/* Hero 2: Realtors - Light Gray */
#hero-realtors {
    background: #f8f9fa;
    color: #1a202c;
}

/* Hero 3: Workmen - Teal Green */
#hero-workmen {
    background: linear-gradient(to right, #134e4a, #0f766e, #14b8a6);
    color: #ffffff;
}


/* HERO SECTION */
.hero-section {
  height: 35vh;              /* Desktop hero height */
  min-height: 520px;         /* Prevent collapse */
  max-height: 900px; 
  padding: 0% !important;        /* Prevent ridiculous screens */
}

/* SLIDE WRAPPER */
.hero-slide {
  height: 100%;
  background: #ad0c0c;       /* Replace with image/gradient later */
}

/* MOBILE TUNING */
@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
    min-height: 480px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }
}

/* ============================================================================
   CONTENT WRAPPER
   ============================================================================ */

.hero-content-wrapper {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================================================================
   BADGES - MINIMAL & CLEAN
   ============================================================================ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 3.125rem;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#hero-property-owners .hero-badge {
    background: #fbbf24;
    color: #1a202c;
}

#hero-realtors .hero-badge {
    background: #fbbf24;
    color: #1a202c;
}

#hero-workmen .hero-badge {
    background: #fbbf24;
    color: #1a202c;
}

/* ============================================================================
   HEADLINES - CLEAN & READABLE
   ============================================================================ */

.hero-headline {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

#hero-property-owners .hero-headline {
    color: #ffffff;
}

#hero-realtors .hero-headline {
    color: #1a202c;
}

#hero-workmen .hero-headline {
    color: #ffffff;
}

/* ============================================================================
   DESCRIPTIONS
   ============================================================================ */

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 33.75rem;
}

#hero-property-owners .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

#hero-realtors .hero-description {
    color: #4a5568;
}

#hero-workmen .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   FEATURE CARDS - SIMPLE ROW LAYOUT
   ============================================================================ */

.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 10rem;
}

#hero-property-owners .hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
}

#hero-property-owners .hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

#hero-realtors .hero-feature-item {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#hero-realtors .hero-feature-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#hero-workmen .hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
}

#hero-workmen .hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    background: #fbbf24;
    color: #1a202c;
}

.hero-feature-text {
    flex: 1;
}

.hero-feature-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

#hero-property-owners .hero-feature-text h4 {
    color: #ffffff;
}

#hero-realtors .hero-feature-text h4 {
    color: #1a202c;
}

#hero-workmen .hero-feature-text h4 {
    color: #ffffff;
}

.hero-feature-text p {
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
    opacity: 0.8;
}

/* ============================================================================
   CTA BUTTONS - CLEAN DESIGN
   ============================================================================ */

.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-btn-primary {
    background: #fbbf24;
    color: #1a202c;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 0.75rem rgba(251, 191, 36, 0.3);
    color: #1a202c;
    text-decoration: none;
}

.hero-btn-secondary {
    background: transparent;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#hero-property-owners .hero-btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

#hero-property-owners .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    text-decoration: none;
}

#hero-realtors .hero-btn-secondary {
    border-color: #1a202c;
    color: #1a202c;
}

#hero-realtors .hero-btn-secondary:hover {
    background: #1a202c;
    color: #ffffff;
    text-decoration: none;
}

#hero-workmen .hero-btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

#hero-workmen .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    text-decoration: none;
}

/* ============================================================================
   STATS - SIMPLE GRID
   ============================================================================ */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid;
}

#hero-property-owners .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
}

#hero-realtors .hero-stats {
    border-top-color: #e2e8f0;
}

#hero-workmen .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

#hero-property-owners .hero-stat-number {
    color: #fbbf24;
}

#hero-realtors .hero-stat-number {
    color: #fbbf24;
}

#hero-workmen .hero-stat-number {
    color: #fbbf24;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    font-weight: 500;
}

/* ============================================================================
   HERO IMAGE - CLEAN PRESENTATION
   ============================================================================ */

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 28.125rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
}

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

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature-item {
        min-width: 100%;
    }

    .hero-image {
        min-height: 21.875rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 0;
    }

    .hero-headline {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1.875rem 0;
    }

    .hero-headline {
        font-size: 1.625rem;
    }

    .hero-badge {
        font-size: 0.688rem;
        padding: 0.375rem 1rem;
    }

    .hero-image {
        min-height: 17.5rem;
    }
}

/* ============================================================================
   END OF HOME.CSS
   ============================================================================ */
