/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fafafa;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* NAVBAR LOGO FIX */
.navbar .logo img {
    width: 120px;   /* IMPORTANT */
    height: auto;
}

/* NAVIGATION */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: #1a1a3d;
    font-weight: bold;
}

.navbar a:hover {
    color: #ff6e40;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: url('beach.jpg') center/cover no-repeat; /* Use a beach image */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(255,140,66,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease forwards;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.hero-logo {
    width: 200px;
    max-width: 70%;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

/* HERO BUTTON */
.hero .btn-primary {
    background: #ff8c42;
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: #ff6e40;
    transform: scale(1.05);
}

/* Hero Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT US SECTION */
.section-about {
    padding: 100px 60px;
    background: linear-gradient(to right, #ff8c42, #ff3d81, #ffb380);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1s ease forwards;
}

.section-about h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.section-about p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.section-about .btn-primary {
    background: white;
    color: #ff3d81;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.section-about .btn-primary:hover {
    background: #ff6e40;
    color: white;
    transform: scale(1.05);
}

/* FadeIn Animation */
@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-logo {
        width: 150px;
    }
    .section-about h2 {
        font-size: 2rem;
    }
    .section-about p {
        font-size: 1rem;
    }
}

/* CLUB SECTION */
.club-section {
    padding: 100px 60px;
    background: #0f0f2d; /* Dark club vibe */
    color: white;
    text-align: center;
}

.club-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.club-subtitle {
    margin-bottom: 50px;
    color: #cccccc;
    font-size: 1.1rem;
}

.club-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.club-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.club-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.club-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Optional Glow Effect */
.club-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,61,129,0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.club-item:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .club-gallery {
        grid-template-columns: 1fr;
    }
}


.club-description {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dddddd;
}

.gallery-section {
    padding: 80px 60px;
    background: #f5f5f5;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    height: 300px;          /* Makes all images same height */
    object-fit: cover;      /* Prevents distortion */
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}


.offers-section {
    padding: 100px 60px;
    background: #1a1a3d;
    color: white;
    text-align: center;
}

.offers-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offers-subtitle {
    margin-bottom: 60px;
    color: #cccccc;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #25255c;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.offer-card h3 {
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff8c42;
    color: white;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.time, .price {
    margin-top: 15px;
    font-weight: bold;
    color: #ff8c42;
}




/* FAQ Section */
#faq details {
    background: #f0f0f0;           /* Light gray card for each question */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

#faq details:hover {
    background: #ffe5d9;           /* Highlight on hover */
    transform: translateY(-2px);
}

#faq summary {
    font-size: 1.2rem;
    font-weight: bold;
    list-style: none;              /* Remove default triangle */
    position: relative;
    padding-left: 25px;
    color: #1a1a3d;
}

#faq summary::before {
    content: "➕";                  /* Custom triangle/plus icon */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

#faq details[open] summary::before {
    content: "➖";                  /* Changes to minus when open */
}

#faq details p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    padding-left: 25px;
    transition: opacity 0.3s ease;
}

/* Optional: Smooth expand/collapse */
#faq details p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

#faq details[open] p {
    opacity: 1;
    max-height: 500px; /* Arbitrary large value to allow content to show */
}




/* CONTACT FORM STYLING */
#contact form {
    max-width: 600px;
    margin: 30px auto 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact input,
#contact textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #25255c; /* Darker input to match dark section */
    color: white;
    transition: background 0.3s, box-shadow 0.3s;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #cccccc; /* Lighter placeholder text */
}

#contact input:focus,
#contact textarea:focus {
    background: #333366; /* Slightly lighter on focus */
    box-shadow: 0 0 8px rgba(255, 142, 66, 0.5); /* subtle glow effect */
}

#contact textarea {
    min-height: 120px;
    resize: vertical; /* User can resize vertically only */
}

#contact button.btn-primary {
    padding: 12px 30px;
    border-radius: 8px;
    background: #ff8c42;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: none;
}

#contact button.btn-primary:hover {
    background: #ff6e40;
    transform: translateY(-2px);
}

/* CONTACT TEXT INFO */
#contact p {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #cccccc;
}

/* RESPONSIVE FORM */
@media (max-width: 768px) {
    #contact form {
        padding: 0 20px;
    }
}





/* FOOTER */
.footer {
    background: #1a1a3d;
    color: white;
    text-align: center;
    padding: 15px;
}
