/* Custom styles */
.owl-carousel .owl-item img {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    object-fit: cover;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

.btn-details {
    display: inline-block;
    background-color: #06064D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.btn-details:hover {
    background-color: #17a2b8;
}

/* Custom styles for the Image Section */
#image-section .section-title {
    text-align: center;
    font-size: 36px;
    color: #06064D;
    margin-bottom: 30px;
}

/* Custom styles for the Contact Section */
#contact .section-title {
    font-size: 36px;
    color: #06064D;
}

#contact p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

#contact form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#contact .form-control {
    border-radius: 5px;
    margin-bottom: 20px;
}

#contact .btn-primary {
    background-color: #06064D;
    border-color: #06064D;
    border-radius: 5px;
}

#contact .btn-primary:hover {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

/* Custom styles for the Footer */
footer {
    background-color: #06064D;
    color: #fff;
}

footer p {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.slider-container {
    width: 50%;
    position: relative;
}

.slider {
    display: flex;
    overflow: hidden;
}

.slide {
    width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}


.right-section {
    width: 45%;
    padding-left: 20px;
}

.turf-name {
    font-size: 24px;
    margin-top: 0;
}

.turf-address {
    font-size: 18px;
    color: #555;
}

.turf-description {
    margin-top: 20px;
    color: #555;
}

.rating {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.stars {
    font-size: 24px;
    color: gold;
}

.rating-value {
    margin-left: 10px;
    font-size: 18px;
    color: #555;
}

.container  {
    padding-top: 25px !important;
    margin-bottom: 65px !important;
}
.container-fluid {
    padding-top: 65px !important;
}
.turf-details{
    margin-top: 20px;
}
/* Custom CSS for Tab Headings */
.nav-pills .nav-item .nav-link {
    background-color: #242525;
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 20px;
    margin-right: 10px; /* Adjust spacing between tab items */
}

.nav-pills .nav-item .nav-link.active {
    background-color: #06064D;
    color: #fff;
}

.card {
    border-radius: 15px;
    border: none;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #06064D;
    font-size: 24px;
    font-weight: bold;
}

.card-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.booking-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.card-top {
    padding: 15px;
    background-color: #f8f9fa;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.facility-name {
    color: #06064D;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.time-range {
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 0;
}

.card-bottom {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #06064D;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}

.price-description {
    color: #4a4a4a;
    font-size: 12px;
}

.btn-book {
    background-color: #06064D;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #004080;
}
.form-group {
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
}
/* General Navbar Styling */
.navbar-custom {
    background-color: #1e1e2d; /* Dark background */
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    color: #f5f5f7;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-custom .navbar-nav .nav-link {
    color: #f5f5f7; /* Light text color */
    font-weight: 500;
    padding: 0.8rem 1rem;
    transition: color 0.3s, background-color 0.3s;
}

/* Hover Effect */
.navbar-custom .navbar-nav .nav-link:hover {
    color: #ffffff;
    background-color: #393e46; /* Subtle background on hover */
    border-radius: 4px;
}

/* Active Link */
.navbar-custom .navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: #28a745; /* Active link with green background */
    border-radius: 4px;
}

/* Navbar Toggler */
.navbar-custom .navbar-toggler {
    border: none;
    background-color: #f5f5f7;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        background-color: #1e1e2d; /* Match the navbar background */
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .navbar-custom .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar-custom .navbar-nav .nav-link {
        padding: 0.7rem;
        color: #f5f5f7;
        text-align: center;
        font-size: 1.1rem;
    }

    .navbar-custom .navbar-nav .nav-link:hover {
        color: #ffffff;
        background-color: #28a745; /* Change hover background on mobile */
        border-radius: 4px;
    }
}

/* Subtle animations */
.navbar-custom .navbar-nav .nav-item {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 0.5s ease-in-out forwards;
    animation-delay: calc(0.1s * var(--delay));
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Desktop-specific customizations */
@media (min-width: 992px) {
    .navbar-custom .navbar-nav.ms-auto {
        margin-left: auto;
    }

    .navbar-custom .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Mobile-specific customizations */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        text-align: center; /* Center the nav items on mobile */
    }
}
/* Global font settings */
body, .navbar, .navbar-brand, .nav-link, p, a, button,div {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #f5f5f7; /* Light text color for dark backgrounds */
}

/* Font for Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    /*color: #ffffff;*/
}

/* Navbar-specific styling */
.navbar-custom .navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f5f5f7;
}

.navbar-custom .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    color: #f5f5f7;
}

/* Buttons and Links */
.navbar-custom .navbar-nav .nav-link:hover {
    font-weight: 600;
    color: #ffffff;
    background-color: #393e46;
    border-radius: 4px;
}

/* Font styling for paragraphs */
p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Mobile-specific font adjustments */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0.7rem;
    }
}
/* Font Settings */
body {
    background-color: #f8f9fa;
}
.section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}
.card-text {
    font-size: 0.95rem;
    color: #666;
}

/* Button Customizations */
.btn-custom {
    background-color: #0069d9;
    color: #fff;
    padding: 12px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-custom:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Card Customizations */
.dashboard-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Colors and Icon Animations */
.text-primary {
    color: #0069d9 !important;
}
.text-success {
    color: #28a745 !important;
}
.text-danger {
    color: #dc3545 !important;
}
.text-warning {
    color: #ffc107 !important;
}
.text-info {
    color: #17a2b8 !important;
}
.text-secondary {
    color: #6c757d !important;
}
.text-dark {
    color: #343a40 !important;
}
i {
    transition: transform 0.3s ease-in-out;
}
.card-body:hover i {
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .btn-custom {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}
.form-label{
    color:#000;
}
.dropify-infos-message{
    color:#000!important;
}