/* Reset default margins/padding */
html,
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(14px, 3vw, 18px);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Ensure header is at top and overlays hero */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Remove any unintended spacing */
body {
    /* overflow-x: hidden; */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header,
.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 1000;
    padding: 20px 40px;
    color: #fff;
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    /* dark semi-transparent bg */
    transition: background 0.3s ease;
}

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

.logo-img {
    height: 80px;
    object-fit: contain;
}

/* Header buttons */
.btn-primary,
.btn-secondary {
    padding: 10px 20px;

    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* margin-left: 15px; */
}

/* Primary button with transparent style */
.btn-primary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
}

/* Secondary button with white background */
.btn-secondary {
    background: #fff;
    color: #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}
.btn-profile {
    display: flex;
    align-items: center;
    background-color: #ff0040; /* Red background */
    color: #fff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-profile:hover {
    background-color: #e10036; /* Slightly darker red on hover */
}

.btn-profile i {
    margin-right: 10px; /* Space between icon and text */
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-content p {
    margin: 20px 0;
    font-size: 18px;
}

/* Sports Tabs */
.sports-tabs {
    display: flex !important;
    justify-content: space-around !important; /* Spread the icons evenly */
    align-items: center !important;
    flex-wrap: wrap !important; /* Allow wrapping on smaller screens */
    max-width: 1100px !important;
    margin: 0 auto !important;
    gap: 77px !important; /* Space between icons */
}

.sport-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.sport-tab img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.sport-tab span {
    font-weight: bold;
    font-size: 1.2rem;
}

.sport-tab:hover {
    transform: scale(1.05);
}

.sport-tab:hover span {
    color: #fff !important;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Bebas Neue", sans-serif;
}

.why-choose .section-intro {
    flex: 1;
    min-width: 280px;
}

.why-choose .section-intro h5 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.why-choose .section-intro h2::after {
    content: "";
    /* display: block; */
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    margin-top: 5px;
}

.why-choose .features-list {
    flex: 2;
    min-width: 300px;
}

.why-choose .features-list ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.why-choose .features-list li {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.6;
}

.why-choose .features-list li b {
    font-weight: 600;
    color: #111;
}

/* Feature Icons Section */
.why-choose .features-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.why-choose .features-icons .feature {
    flex: 1;
    text-align: center;
    min-width: 180px;
    padding: 0 10px;
    border-right: 1px solid #eee;
}

.why-choose .features-icons .feature:last-child {
    border-right: none;
}

.why-choose .feature img {
    max-width: 60px;
    margin-bottom: 10px;
}

.why-choose .feature p {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 10px;
}

/* About */
.about {
    background-color: #111;
    color: white;
    padding: 80px 0;
    border-bottom: 1px solid white;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    gap: 10px;
}

.image-container {
    flex: 1;
    overflow: hidden;
}

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

.divider {
    width: 4px;
    height: 100%;
    background-color: white;
}

.about-text {
    flex: 1;
    max-width: 550px;
}

.about-text h5 {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-about {
    background-color: #c6f221;
    color: #000;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-about:hover {
    background-color: #b6e111;
}

/* How to Book */
.how-to-book {
    padding: 1px 0;
    text-align: center;
}

.steps {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
}

.step i {
    font-size: 40px;
    color: #377dff;
    /* Blue similar to screenshot */
    margin-bottom: 15px;
    display: block;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
}

.contact button {
    display: block;
    margin: 10px auto;
}

/* News */
.news {
    padding: 60px 0;
}

.news h2 {
    text-align: center;
    margin-bottom: 30px;
}

.news-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.news-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

/* Footer */
.site-footer {
    background: #111;
    color: #fff;
    padding: 0px 0 1px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.footer-left {
    flex: 1;
    min-width: 260px;
}

.footer-logo {
    height: 90px;
    margin-bottom: -20px;
}

.footer-tagline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.footer-address h4 {
    color: red;
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    text-decoration: none;
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 20px;
    font-size: 20px;
    align-items: center;
    margin-top: 7px;
    margin-left: 14px;
    /* <-- Adds space above the icons */
}

.footer-socials a {
    color: #fff;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: red;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 15px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Hero Section */
.about-hero {
    background: #f8f8f8;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-hero p {
    font-size: 20px;
    color: #666;
}

/* About Content Section */
.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
}

.about-text2 {
    flex: 1;
    min-width: 300px;
}

.about-text2 h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text2 p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000;
}

/* About Stats Section */
.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 160px;
    flex-wrap: wrap;
    margin: 100px 0;
}

.about-stats .stat {
    position: relative;
    text-align: center;
}

.about-stats .stat h3 {
    font-size: 160px;
    /* make numbers big */
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    /* faded number */
    margin: 0;
    line-height: 1;
}

.about-stats .stat p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 24px;
    /* size of label text */
    font-weight: 700;
    color: #111;
    /* dark color */
    white-space: nowrap;
}

/* Banner Image Section */
.about-banner img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
    margin: 60px 0;
    border-radius: 8px;
}

/* About Details Section */
.details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.details-text {
    flex: 1;
    min-width: 300px;
}

.details-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.details-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.details-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.details-image img {
    width: 100%;
    border-radius: 8px;
}

.details-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.details-badges .badge {
    padding: 10px 16px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
}

.details-badges .badge.green {
    background: #7ab800;
}

.details-badges .badge.black {
    background: #000;
}

.header-right .btn-primary,
.header-right .btn-secondary {
    background-color: #ff0040;
    /* bright blue */
    color: #fff;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    padding: 6px 15px;
    /* font-weight: bold; */
    transition: background-color 0.3s ease;
    margin-right: 5px;
    /* font-family: HelveticaNeue-Medium !important; */
}

.header-right .btn-primary:hover,
.header-right .btn-secondary:hover {
    background-color: #ff0040;
    /* darker blue on hover */
    color: #fff;
}

/* Modal overlay */
.modal {
    /* font-family: "Montserrat", sans-serif !important; */
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    /* overflow-x: hidden !important;
    overflow-y: hidden !important; */
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    position: relative;
    max-height: 124vh;
    text-align: center;
}

.modal-content2 {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    position: relative;
    max-height: 170vh;
    text-align: center;
}

/* Close button */
.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

/* Social login buttons */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    color: white;
    transition: background 0.3s;
}

.social-btn.google {
    background-color: #db4437;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.apple {
    background-color: #000;
}

.social-btn:hover {
    opacity: 0.8;
}

/* Form styling */
.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.modal-content2 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.modal-content form label {
    color: #383838;
    font-size: 0.95rem;
    padding-left: 0.1rem;
    font-weight: 500;
}

.modal-content2 form label {
    color: #383838;
    font-size: 0.95rem;
    padding-left: 0.1rem;
    font-weight: 500;
}

.modal-content form input {
    padding: 10px;
    font-size: 16px;
    background-color: #f2f5fa;
    border: 1px solid #f2f5fa;
    border-radius: 4px;
}

.modal-content2 form input {
    padding: 10px;
    font-size: 16px;
    background-color: #f2f5fa;
    border: 1px solid #f2f5fa;
    border-radius: 4px;
}

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

.forgot {
    font-size: 14px;
    color: #ff0040;
    text-decoration: none;
}

.forgot:hover {
    text-decoration: underline;
}

.modal-content .btn-primary {
    padding: 12px;
    background-color: #ff0040;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-content .btn-primary:hover {
    background-color: #ff0040;
}

.modal-content2 .btn-primary {
    padding: 12px;
    background-color: #ff0040;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-content2 .btn-primary:hover {
    background-color: #ff0040;
}

.signup-text {
    color: #545454;
    font-size: 0.94rem;
    margin-top: 1.6rem;
}

.signup-text a {
    color: #ff0040;
    text-decoration: none;
    font-weight: bold;
}

.signup-text a:hover {
    text-decoration: underline;
}

.modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.modal-logo img {
    width: 80px;
    height: auto;
}

.modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.grounds-section {
    padding: 40px 0;
    background: #fff;
}

.grounds-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9rem;
    /* Pushes the header down */
    position: relative;
    z-index: 1;
    /* Makes sure it’s above background elements */
}

.grounds-header h2 {
    font-size: 2rem;
    font-weight: bold;
}

.grounds-filters .btn-secondary {
    margin-left: 10px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.grounds-layout {
    display: flex;
    gap: 20px;
}

.grounds-list {
    flex: 1;
    max-height: 520px;
    overflow-y: auto;
}

.ground-item {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.ground-item:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    text-decoration: none;
}

.ground-date {
    text-align: center;
    margin-right: 15px;
}

.ground-date .day {
    font-size: 16px;
    font-weight: bold;
    color: #e63946;
}

.ground-date .date {
    font-size: 13px;
    color: #555;
}

.ground-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.ground-info p {
    font-size: 14px;
    color: #666;
}

.ground-info .badge {
    background: #007bff;
    color: white;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 6px;
    margin-left: 6px;
}

.ground-price {
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.ground-price span {
    font-size: 12px;
    color: #777;
}

#ground-map {
    width: 50%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-height: 475px;
}

.date-picker-container {
    padding: 10px 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.date-picker-container label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.date-picker-container input[type="date"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
/* Profile */

.profile-tabs {
    margin-top: 120px !important; /* space between header and tabs */
    border-bottom: 1px solid #ddd !important;
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
}

.profile-tabs .nav-link {
    border: none !important; /* remove top/side borders */
    border-bottom: 2px solid transparent !important;
    font-weight: 500 !important;
    color: #333 !important;
    padding: 10px 20px !important;
    transition: 0.3s ease !important;
}

.profile-tabs .nav-link.active {
    border-bottom: 2px solid #f3274c !important; /* underline active tab */
    color: #f3274c !important;
    font-weight: bold !important;
}

/* Payment Box */
.payment-box {
    background: #fafafa;
    border: 1px dashed #ccc;
    border-radius: 8px;
    max-width: 400px; /* minimal centered width */
    margin: 60px auto; /* center horizontally + add spacing */
    padding: 40px 20px;
    text-align: center;
}
.edit-profile-form input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
}

.edit-profile-form .btn-danger {
    font-weight: bold;
    padding: 10px;
    border-radius: 6px;
}
.profile-tabs .nav-link:hover {
    color: #f3274c;
}

/* booking.css */

/* Container Styling */
/* Add spacing from header */
.booking-container {
    margin-top: 9rem;
    margin-bottom: 3rem;
}

/* Card Styling */
.booking-card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Header */
.booking-card .card-header {
    background-color: #dc3545;
    color: #fff;
}

/* Image & Map Styling */
/* Image & Map Styling */
.booking-img,
.booking-map iframe {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0.375rem;
    border: 1px solid #ddd;
}

/* Optional: Make sure the wrapper div doesn’t constrain the iframe */
.booking-map {
    width: 100%;
    height: 350px;
    margin-top: 1.5rem;
}

/* Booking Info */
.booking-info h5 {
    color: #dc3545;
}

.booking-price {
    color: #28a745;
}
.card {
    transition: transform 0.2s ease !important;
}

.card:hover {
    transform: scale(1.01) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}
.badge-booked {
    background-color: #28a745;
    color: white;
}

.badge-cancelled {
    background-color: #6c757d;
    color: white;
}
.input-group {
    position: relative;
}

input[type="password"] {
    width: 100%;
    padding-right: 40px; /* Adjust this padding to make space for the icon */
    padding-left: 10px; /* Optional: to provide some space inside the input */
}

.signin {
    position: absolute !important;
    right: 58px !important;
    top: 63% !important;
    transform: translateY(
        -50%
    ) !important; /* Vertically center the icon inside the input field */
    cursor: pointer !important;
}
.signup {
    position: absolute !important;
    right: 58px !important;
    top: 73% !important;
    transform: translateY(
        -50%
    ) !important; /* Vertically center the icon inside the input field */
    cursor: pointer !important;
}
.footer {
    text-align: center !important;
    margin-top: 20px !important;
}
.footer a {
    color: #ff0040 !important;
    font-weight: bold !important;
}
.carousel-img {
    width: 100%; /* Makes the image take up full width */
    height: 348px; /* Fix the height */
    object-fit: cover; /* Ensures the image is scaled correctly while maintaining aspect ratio */
    max-width: 619px; /* Fix the max width to 619px */
    margin: 0 auto; /* Center the image */
}
.gm-style-iw-a {
    max-width: 100%; /* Ensure it doesn't exceed the screen width */
    width: auto; /* Allow it to adjust to the content */
    padding: 5px;
}

.gm-style-iw-c {
    width: 100% !important; /* Set the InfoWindow content width to be 100% */
    max-width: 300px; /* Limit the width on small screens */
    min-width: 250px !important; /* Set a minimum width */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.gm-style-iw-d {
    padding: 5px;
    overflow: auto;
}

.gm-style-iw-d img {
    width: 100% !important; /* Ensure the image takes up 100% width */
    height: auto !important; /* Make the image scale proportionally */
    max-width: 100%;
}

/* Close button styling */
button.gm-ui-hover-effect {
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: none !important;
}
.object-cover {
    object-fit: cover;
}

@media (max-width: 1440px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex;
        justify-content: space-around; /* Distribute icons evenly */
        align-items: center;
        flex-direction: row; /* Make them horizontal */
        gap: 20px; /* Add space between icons */
    }

    .sport-tab {
        flex: 0 1 auto; /* Ensure that items don't grow too large */
        text-align: center;
    }

    /* Adjust the icons size for mobile view */
    .sport-tab img {
        width: 50px;
        height: 50px;
    }

    .sport-tab span {
        font-size: 1rem; /* Adjust text size for mobile */
    }
    .grounds-layout {
        flex-direction: column;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
}
@media (max-width: 1366px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex;
        justify-content: space-around; /* Distribute icons evenly */
        align-items: center;
        flex-direction: row; /* Make them horizontal */
        gap: 20px; /* Add space between icons */
    }

    .sport-tab {
        flex: 0 1 auto; /* Ensure that items don't grow too large */
        text-align: center;
    }

    /* Adjust the icons size for mobile view */
    .sport-tab img {
        width: 50px;
        height: 50px;
    }

    .sport-tab span {
        font-size: 1rem; /* Adjust text size for mobile */
    }
    .grounds-layout {
        flex-direction: row;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
}
@media (max-width: 1280px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex;
        justify-content: space-around; /* Distribute icons evenly */
        align-items: center;
        flex-direction: row; /* Make them horizontal */
        gap: 20px; /* Add space between icons */
    }

    .sport-tab {
        flex: 0 1 auto; /* Ensure that items don't grow too large */
        text-align: center;
    }

    /* Adjust the icons size for mobile view */
    .sport-tab img {
        width: 50px;
        height: 50px;
    }

    .sport-tab span {
        font-size: 1rem; /* Adjust text size for mobile */
    }
    .grounds-layout {
        flex-direction: row;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 250px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .sports-tabs {
        justify-content: center !important; /* Center align on smaller screens */
        gap: 36px !important;
    }

    .sport-tab img {
        width: 50px !important;
        height: 50px !important;
    }

    .sport-tab span {
        font-size: 1rem !important;
    }
}
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex;
        justify-content: space-around; /* Distribute icons evenly */
        align-items: center;
        flex-direction: row; /* Make them horizontal */
        gap: 20px; /* Add space between icons */
    }

    .sport-tab {
        flex: 0 1 auto; /* Ensure that items don't grow too large */
        text-align: center;
    }

    /* Adjust the icons size for mobile view */
    .sport-tab img {
        width: 50px;
        height: 50px;
    }

    .sport-tab span {
        font-size: 1rem; /* Adjust text size for mobile */
    }
    .grounds-layout {
        flex-direction: row;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 117px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .sports-tabs {
        justify-content: center !important; /* Center align on smaller screens */
        gap: 36px !important;
    }

    .sport-tab img {
        width: 50px !important;
        height: 50px !important;
    }

    .sport-tab span {
        font-size: 1rem !important;
    }
}
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex;
        justify-content: space-around; /* Distribute icons evenly */
        align-items: center;
        flex-direction: row; /* Make them horizontal */
        gap: 20px; /* Add space between icons */
    }

    .sport-tab {
        flex: 0 1 auto; /* Ensure that items don't grow too large */
        text-align: center;
    }

    /* Adjust the icons size for mobile view */
    .sport-tab img {
        width: 50px;
        height: 50px;
    }

    .sport-tab span {
        font-size: 1rem; /* Adjust text size for mobile */
    }
    .grounds-layout {
        flex-direction: row;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 94px;
        color: #fff;
        transition: background 0.3s ease;
    }
}

@media (max-width: 853px) {
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 58px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .grounds-layout {
        flex-direction: row;
    }
}
@media (max-width: 820px) {
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 42px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .sports-tabs {
        justify-content: center !important; /* Center align on smaller screens */
        gap: 36px !important;
    }

    .sport-tab img {
        width: 50px !important;
        height: 50px !important;
    }

    .sport-tab span {
        font-size: 1rem !important;
    }
    .grounds-layout {
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        justify-content: center !important; /* Center align on smaller screens */
        gap: 36px !important;
    }

    .sport-tab img {
        width: 50px !important;
        height: 50px !important;
    }

    .sport-tab span {
        font-size: 1rem !important;
    }
    .grounds-layout {
        flex-direction: row;
    }

    #ground-map {
        width: 100%;
        height: 380px; /* Adjust height as needed */
        margin-top: 20px;
    }

    .grounds-list {
        max-height: 520px; /* Let it expand naturally on mobile */
    }
    .gm-style-iw-c {
        width: 100% !important; /* Ensure it stretches to 100% width on mobile */
        max-width: 90% !important; /* Allow the content to use most of the screen */
        padding: 10px;
        min-width: 235px !important;
    }

    .gm-style-iw-d {
        max-height: 200px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 35px;
        height: 35px;
        display: none !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 0px;
        color: #fff;
        transition: background 0.3s ease;
    }
    /* Ensure all containers take full height */
    .carousel-inner,
    .carousel-item,
    .carousel-item img {
        height: 100%;
    }
}
@media (max-width: 600px) {
    .grounds-layout {
        flex-direction: column;
    }
    #ground-map {
        display: none;
        height: 250px; /* Even smaller height for very small screens */
    }
    .gm-style-iw-c {
        max-width: 85% !important; /* Ensure the content is not too wide */
        padding: 15px;
        min-width: 180px !important;
    }

    .gm-style-iw-d {
        padding: 10px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 30px;
        height: 30px;
        margin: 0;
        display: none !important;
    }
}

@media (max-width: 576px) {
    .grounds-layout {
        flex-direction: column;
    }
    #ground-map {
        display: none;
        height: 250px; /* Even smaller height for very small screens */
    }
    .gm-style-iw-c {
        max-width: 85% !important; /* Ensure the content is not too wide */
        padding: 15px;
        min-width: 180px !important;
    }

    .gm-style-iw-d {
        padding: 10px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 30px;
        height: 30px;
        margin: 0;
        display: none !important;
    }
    .sports-tabs {
        display: flex !important;
        justify-content: space-around !important; /* Distribute icons evenly */
        align-items: center !important;
        flex-direction: row !important; /* Make them horizontal */
        gap: 20px !important; /* Add space between icons */
    }

    .sports-tabs {
        justify-content: center !important;
        gap: 12px !important;
    }

    .sport-tab img {
        width: 40px !important;
        height: 40px !important;
    }

    .sport-tab span {
        font-size: 0.9rem !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 55px;
        color: #fff;
        transition: background 0.3s ease;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 50px;
    }
    .sports-tabs {
        display: flex !important;
        justify-content: space-around !important; /* Distribute icons evenly */
        align-items: center !important;
        flex-direction: row !important; /* Make them horizontal */
        gap: 20px !important; /* Add space between icons */
    }

    .sports-tabs {
        justify-content: center !important;
        gap: 0px !important;
    }

    .sport-tab img {
        width: 40px !important;
        height: 40px !important;
    }

    .sport-tab span {
        font-size: 0.9rem !important;
    }

    .hero-video {
        aspect-ratio: 9 / 16;
    }
    .about-content {
        flex-direction: column;
    }
    .gm-style-iw-c {
        max-width: 85% !important; /* Ensure the content is not too wide */
        padding: 15px;
        min-width: 180px !important;
    }

    .gm-style-iw-d {
        padding: 10px;
        overflow: auto;
    }

    button.gm-ui-hover-effect {
        width: 30px;
        height: 30px;
        margin: 0;
        display: none !important;
    }
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 28px;
        color: #fff;
        transition: background 0.3s ease;
    }
    #ground-map {
        display: none;
    }
    .grounds-layout {
        flex-direction: column;
    }
    .about {
        padding: 0px 0;
    }
}
@media (max-width: 390px) {
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 19px;
        color: #fff;
        transition: background 0.3s ease;
    }
    #ground-map {
        display: none;
    }
    .grounds-layout {
        flex-direction: column;
    }
    .about {
        padding: 0px 0;
    }
}
@media (max-width: 375px) {
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 10px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .sports-tabs {
        display: flex !important;
        justify-content: space-around !important; /* Distribute icons evenly */
        align-items: center !important;
        flex-direction: row !important; /* Make them horizontal */
        gap: 20px !important; /* Add space between icons */
    }

    .sports-tabs {
        justify-content: center !important;
        gap: 19px !important;
    }

    .sport-tab img {
        width: 40px !important;
        height: 40px !important;
    }

    .sport-tab span {
        font-size: 0.9rem !important;
    }
    #ground-map {
        display: none;
    }
    .grounds-layout {
        flex-direction: column;
    }
    .about {
        padding: 0px 0;
    }
}
@media (max-width: 360px) {
    .sports-tabs {
        justify-content: center !important;
        gap: 21px !important;
    }
    #ground-map {
        display: none;
    }
    .grounds-layout {
        flex-direction: column;
    }
    .about {
        padding: 0px 0;
    }
}
@media (max-width: 320px) {
    .site-header,
    .transparent-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        z-index: 1000;
        padding: 20px 10px;
        color: #fff;
        transition: background 0.3s ease;
    }
    .sports-tabs {
        justify-content: center !important;
        gap: 21px !important;
    }
    #ground-map {
        display: none;
    }
    .grounds-layout {
        flex-direction: column;
    }
    .about {
        padding: 0px 0;
    }
}
