/* ======================================================
Project : Sridevi Enterprises
File    : home.css
====================================================== */

/* ===========================================
   Hero Section
=========================================== */

.hero-section {

    position: relative;

    height: 75vh;

    overflow: hidden;

    margin-bottom: 0;

    padding-bottom: 0;

}

/* ===========================================
   Gradient Background Fallback
=========================================== */

.hero-background {

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            #1E4FA3 0%,
            #0F2E6E 100%);

}

/* ===========================================
   Background Video
=========================================== */

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: 1;

}

/* ===========================================
   Overlay
=========================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    z-index: 2;

}

/* ===========================================
   Content
=========================================== */

.hero-content {

    position: relative;

    z-index: 3;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

}


/* ===========================================
   Heading
=========================================== */

.hero-title {

    font-family: 'Poppins', sans-serif;

    font-size: 3.4rem;

    font-weight: 700;

    margin-bottom: 15px;

    text-shadow: 0 3px 12px rgba(0, 0, 0, .35);

}

/* ===========================================
   Tagline
=========================================== */

.hero-tagline {

    font-size: 1.3rem;

    max-width: 700px;

    margin-bottom: 35px;

    color: #F5F5F5;

}

/* ===========================================
   Buttons
=========================================== */

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    justify-content: center;

}

.hero-buttons .btn {

    padding: 12px 28px;

    border-radius: 8px;

}

.hero-buttons .btn-outline-light {

    border: 2px solid white;

}

.hero-buttons .btn:hover {

    transform: translateY(-2px);

    transition: .25s;

}

/* ===========================================
   Mobile
=========================================== */

@media(max-width:768px) {

    .hero-section {

        height: 60vh;

    }

    .hero-title {

        font-size: 2rem;

    }

    .hero-buttons {

        flex-direction: column;

    }

}

/* ===========================================
   Hero Description
=========================================== */

.hero-description {

    font-size: 1.1rem;

    color: #F5F5F5;

    margin-bottom: 35px;

    letter-spacing: .5px;

}

/* ===========================================
   Hero Animation
=========================================== */

.hero-content {

    animation: heroFade .8s ease;
}

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* ===========================================
   Quick Actions
=========================================== */

.quick-actions {

    background: #ffffff;

    padding: 35px 0;

}

.quick-actions-wrapper {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.quick-actions .btn {

    min-width: 230px;

    padding: 14px 30px;

}

/* ===========================================
   Homepage Content Sections
=========================================== */

.featured-products-section,
.brands-section,
.about-section,
.map-section {

    padding: 80px 0;

}

.featured-products-section,
.about-section {

    background: #ffffff;

}

.brands-section,
.map-section {

    background: #F5F7FA;

}

.product-card,
.brand-card {

    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);

}

.product-card-image {

    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #F5F7FA;
    padding: 20px;

}

.product-card-body {

    padding: 22px;

}

.product-card h3,
.brand-card h3 {

    font-size: 1.05rem;
    font-weight: 600;
    color: #1F2937;

}

.product-brand,
.product-availability {

    color: #667085;
    font-size: .9rem;
    margin-bottom: 8px;

}

.product-availability {

    color: #1E4FA3;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;

}

.product-card .btn {

    width: 100%;

}

.brand-card {

    min-height: 150px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.brand-logo-placeholder {

    color: #1E4FA3;
    font-size: 1.6rem;
    margin-bottom: 12px;

}

.about-section h2 {

    color: #1E4FA3;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;

}

.about-section p {

    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;

}

.map-placeholder {

    min-height: 300px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1E4FA3, #0F2E6E);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;

}

.map-placeholder i {

    font-size: 2.5rem;

}
