﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General Reset */


:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --bg-color: #f8f9fa; /* light neutral background */
    --text-color: #333; /* default text color */
    --btn-primary: #006D44;
    --btn-hover: #0056b3;
}




body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
}




.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.tab-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

    .tab-btn.active {
        border-bottom: 3px solid #000;
        color: #000;
    }

.grid-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

    .grid-options button {
        padding: 10px 20px;
        border-radius: 6px;
        border: 1px solid #ccc;
        background-color: #f7f7f7;
        cursor: pointer;
    }

        .grid-options button:hover {
            background-color: #e0e0e0;
        }










@media (max-width: 768px) {


    .mobile-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Optional Hero Styling if needed */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.discount {
    background: #2c8769;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    background: #2c8769;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #55883B;
    }





.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 28.125%; /* 👈 16:9 aspect ratio (9/16 * 100) ~ 500px if full width */
    overflow: hidden;
    background: black;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; /* or try 'cover' if cropping is okay */
    z-index: 1;
}






.hero-video-section {
    position: relative;
    height: 600px; /* or whatever shorter height you prefer */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black; /* fallback background if video loads late */
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 2s ease;
    max-width: 90%;
}


