/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    padding: 0 40px 0 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    height: 110px;
    width: auto;
}

.logo:first-child {
    margin-left: -60px;
}

.logo-separator {
    font-size: 2.5rem;
    color: #BABCC0;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Menu Toggle (Hamburger) */
.nav-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-icon {
    width: 28px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.dropdown-item:hover {
    background-color: #F6F6F6;
    color: #40A829;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #40A829 0%, #A1CB09 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #F6F6F6;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #5E5E5E;
}

.btn-find-store {
    display: inline-block;
    background-color: #40A829;
    color: #FFFFFF;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-find-store:hover {
    background-color: #A1CB09;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #FFFFFF;
    border: 2px solid #40A829;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 168, 41, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #40A829;
}

.service-card p {
    font-size: 1rem;
    color: #5E5E5E;
}

/* Why Cricket Section */
.why-cricket {
    padding: 80px 0;
    background-color: #F6F6F6;
}

.why-cricket h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #40A829;
}

.feature-card p {
    font-size: 1rem;
    color: #5E5E5E;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.locations h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: #F6F6F6;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 168, 41, 0.2);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #40A829;
    font-weight: bold;
}

.location-card p {
    font-size: 1rem;
    color: #5E5E5E;
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    background-color: #40A829;
    color: #FFFFFF;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.map-link:hover {
    background-color: #A1CB09;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo {
        height: 85px;
    }

    .logo:first-child {
        margin-left: 0px;
    }

    .logo-separator {
        font-size: 2rem;
    }

    .nav-logos {
        gap: 18px;
    }

    .navbar .container {
        padding: 0 40px 0 40px;
    }

    .menu-icon {
        width: 24px;
        height: 2.5px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about h2,
    .services h2,
    .why-cricket h2 {
        font-size: 2rem;
    }

    .logo {
        height: 70px;
    }

    .logo:first-child {
        margin-left: 0px;
    }

    .logo-separator {
        font-size: 1.8rem;
    }

    .nav-logos {
        gap: 12px;
    }

    .navbar .container {
        padding: 0 15px 0 30px;
    }

    .menu-icon {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 55px;
    }

    .logo:first-child {
        margin-left: 0px;
    }

    .logo-separator {
        font-size: 1.5rem;
    }

    .nav-logos {
        gap: 8px;
    }

    .navbar .container {
        padding: 0 10px 0 25px;
    }

    .menu-icon {
        width: 20px;
        height: 2px;
    }

    .dropdown-menu {
        min-width: 180px;
    }

    .dropdown-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}
