/* =======================================================
   THE MODERN DESIGN SYSTEM (White, Matte Charcoal, and Gold Yellow)
   ======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #f8f9fa; /* Warm, ultra-clean off-white */
    color: #2d3748;            /* Matte charcoal for perfect readability */
    line-height: 1.6;
}

/* SIGNBOARD STYLING */
header {
    background-color: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gym-logo {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.location-tag {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

/* FLUID CONTENT LAYOUT */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.badge {
    background-color: #fef08a; /* Soft bright yellow badge background */
    color: #854d0e;            /* Dark gold text for high contrast */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 32px;
    color: #1a202c;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    color: #eab308; /* Trendy 2026 accent gold-yellow */
}

.story-text {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 16px;
}

/* BULLET LIST */
.gym-features {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #e2e8f0;
}

.gym-features h3 {
    color: #1a202c;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.gym-features ul {
    list-style: none;
}

.gym-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MAIN CTAs */
.action-zone {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

.whatsapp {
    background-color: #25d366;
    color: white;
}

.maps {
    background-color: #1a202c;
    color: white;
}

/* 2026 ULTRA-CLEAN BOOKING FORM */
.booking-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.booking-container h3 {
    color: #1a202c;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.form-subtext {
    font-size: 14px;
    color: #718096;
    margin-bottom: 24px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    color: #4a5568;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

form input, form select {
    background-color: #f8f9fa;
    border: 1px solid #cbd5e1;
    padding: 14px;
    color: #1a202c;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
}

form input:focus, form select:focus {
    outline: none;
    border-color: #eab308;
    background-color: #ffffff;
}

.submit-booking-btn {
    background-color: #eab308;
    color: #1a202c;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* MODERN GALLERY SECTIONS */
.gallery-section {
    max-width: 1000px;
    margin: 20px auto 60px auto;
    padding: 0 20px;
}

.gallery-header {
    margin-bottom: 20px;
}

.gallery-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
}

.gallery-header p {
    font-size: 14px;
    color: #718096;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 layout on mobile phones */
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1 / 1; /* Makes them crisp square tiles like Instagram */
    border-radius: 12px;
    overflow: hidden;
}

/* Makes the gallery pictures fill up their frames beautifully without warping */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BRANDED SOCIAL BUTTONS */
.social-links {
    margin-top: 30px;
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: white; /* Clean white text over native brand colors */
    transition: transform 0.2s, opacity 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Native App Platform Colors */
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook {
    background-color: #1877f2;
}

/* MINIMALIST FOOTER */
footer {
    background-color: #ffffff;
    padding: 50px 20px 30px 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.schedule h3, .social-links h3 {
    color: #1a202c;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule p {
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: #a0aec0;
}

/* =======================================================
   RESPONSIVE SHIFT (Tablet and Large Desktop Layouts)
   ======================================================= */
@media (min-width: 768px) {
    main {
        flex-direction: row;
        align-items: flex-start;
    }

    .content-box, .booking-container {
        flex: 1;
    }

    .action-zone {
        flex-direction: row;
    }

    .cta-button {
        flex: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr); /* Expands beautifully to 4 columns on wide displays */
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .schedule {
        flex: 2;
    }

    .social-links {
        flex: 1;
    }
}