* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff; */

    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}



/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    animation: slideDown 1s ease-in-out; /* Animation for header */
    position: sticky; /* Keep header fixed while scrolling */
    top: 0;
    z-index: 1000;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}
.logo img {
    height: 50px;
    margin-right: 10px;
    animation: fadeIn 1s ease-in-out;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    animation: popUp 1s ease-in-out;
}
.logo-subtext {
    color: #d4af37;
}
.tagline {
    font-size: 14px;
    color: #555;
}

/* Buttons Section */
.buttons {
    display: flex;
    gap: 10px;
    animation: fadeIn 1.2s ease-in-out;
}
.button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px; /* Rounded edges */
    transition: background-color 0.3s, transform 0.3s; /* Smooth hover effect */
}
.button:hover {
    background-color: #ffffff;
    transform: scale(1.1); /* Slight zoom on hover */
}
.chat-button {
    background-color: #d4af37;
    color: rgb(0, 0, 0);
    border: 1px solid #d4af37;
    animation: bounce 2s infinite; /* Bounce animation for attention */
}
.call-button {
    background-color: #d4af37;
    color: rgb(0, 0, 0);
    border: 1px solid #d4af37;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
    }

    .buttons {
        flex-direction: column;
        gap: 5px;
    }

    .button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .tagline {
        font-size: 10px;
    }

    .button {
        padding: 6px 10px;
        font-size: 10px;
    }
}

.navbar {
    /* background-color: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center; */


    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 10px 0;
}
.navbar a {
    /* color: white;
    text-decoration: none;
    margin: 0 10px; */

    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #d4af37;
    color: #fff;
    border-radius: 5px;
}
.navbar .city-selector {
    display: flex;
    align-items: center;
}
.navbar .city-selector select {
    background-color: black;
    color: white;
    border: none;
    font-size: 14px;
}
.city-selector img {
    width: 20px; /* Adjust the size of the image */
    height: 20px; /* Keep the image square */
}

.club-details {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2 {
    color: #ff6347;
}

p {
    color: #333;
    font-size: 1.2em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: calc(25% - 10px);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

iframe {
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking {
    margin-top: 20px;
}

button {
    background-color: #ff6347;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

button:hover {
    background-color: #ff4500;
}

/* Footer */

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out; /* Animation for the footer */
}

.footer {
    background-color: #3b3a3a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    animation: slideUp 1s ease-in-out; /* Animation for smoother entrance */
}

.footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Added gap for spacing */
}

.footer .column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards; /* Animation for each column */
}

.footer .column:nth-child(1) {
    animation-delay: 0.2s;
}
.footer .column:nth-child(2) {
    animation-delay: 0.4s;
}
.footer .column:nth-child(3) {
    animation-delay: 0.6s;
}

.footer h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}

.footer a:hover {
    text-decoration: underline;
    color: #d4af37;
    transform: scale(1.05); /* Subtle zoom effect */
}

.footer .contact-buttons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 10px; /* Spacing for buttons */
}

.footer .contact-buttons a {
    background-color: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}


.footer .contact-buttons a:hover {
    background-color: #fff;
    transform: scale(1.1); /* Slight zoom effect */
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 10px; /* Spacing for icons */
}

.social-icons a {
    display: flex;
    align-items: center; /* Align icon and text */
    gap: 8px; /* Space between icon and text */
    text-decoration: none; /* Remove underline */
    color: rgb(255, 255, 255); /* Set text color */
    font-size: 16px; /* Adjust text size */
    margin-bottom: 5px; /* Space between social links */
}

.social-icons img {
    width: 20px; /* Adjust icon size */
    height: auto; /* Maintain aspect ratio */
}

.footer .social-icons a:hover {
    color: #fff;
    transform: rotate(15deg) scale(1.2); /* Fun rotation and zoom effect */
}

.footer .cities {
    margin-top: 20px;
}

.footer .cities a {
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .cities a:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Reduced gap for smaller screens */
    }
}

@media (max-width: 480px) {
    .footer .column {
        min-width: 100%; /* Full-width columns on mobile */
        text-align: center;
    }

    .footer .contact-buttons a {
        padding: 10px 15px; /* Adjust button size for mobile */
    }

    .footer .social-icons a {
        font-size: 1rem; /* Adjust icon size for mobile */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extra */

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input:focus, form textarea:focus, form select:focus {
    border-color: #4caf50;
    outline: none;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.col {
    flex: 1;
    padding: 15px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    header h1 {
        font-size: 1.8rem;
    }
}