* {
    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 */
}

.section-title {
    text-align:center;
    padding: 20px;
    font-size: 32px;
    color: #000000;
}

/* banner */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/assets/club1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero span {
    color: #FFD700; /* Gold color */
}
.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* cities */
.indexCities {
    padding: 20px;
    background-color: rgb(0, 0, 0);
    color: white;
    border-bottom: 1px solid #555;
    animation: fadeIn 1s ease-in-out; /* Animation for smooth appearance */
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 20px;
    padding: 20px;
    animation: slideUp 1s ease-in-out; /* Animation for grid appearance */
}

.city {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transform and shadow on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards; /* Fade-in with upward motion */
}

.city:nth-child(1) {
    animation-delay: 0.2s;
}
.city:nth-child(2) {
    animation-delay: 0.4s;
}
.city:nth-child(3) {
    animation-delay: 0.6s;
}
.city:nth-child(4) {
    animation-delay: 0.8s;
}

.city img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.city:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow effect */
}

.city:hover img {
    transform: scale(1.1); /* Image zooms slightly */
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    text-align: left;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth background and slide effect */
    transform: translateY(100%); /* Initially hidden below */
}

.city:hover .overlay {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(0); /* Slide up on hover */
}

.overlay h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    animation: fadeIn 0.5s ease-in-out; /* Smooth fade-in for text */
}

.overlay p {
    margin: 0;
    color: #d4af37;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
    }

    .overlay h2 {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }

    .overlay p {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .cities-grid {
        padding: 10px; /* Adjust padding for mobile */
        gap: 10px;
    }

    .overlay {
        padding: 8px 15px; /* Adjust overlay padding */
    }
}

/* 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);
    }
}



.event-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.card {
    background-color: white;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-content {
    padding: 15px;
}
.card-title {
    font-size: 24px;
    margin: 0;
    color: #494848;
}
.card-description {
    font-size: 14px;
    color: #555;
}
.card-button {
    background-color: #000000;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
}
.card-button:hover {
    background-color: #b68e28;
}

/* 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;
    }
}