* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    margin: 0 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #e31e24;
}

.btn-reserve {
    background-color: #e31e24;
    color: #fff;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
}

.btn-reserve:hover {
    background-color: #c51820;
}

/* Hero Section */
.hero-section {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2387CEEB" width="1200" height="600"/><path fill="%23fff" d="M0 400 Q300 350 600 400 T1200 400 L1200 600 L0 600 Z"/></svg>') center/cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #87CEEB;
}

.hero-logo {
    text-align: center;
    z-index: 2;
}

.hero-logo .logo-z {
    font-size: 180px;
    font-weight: 900;
    color: #e31e24;
    line-height: 0.8;
    font-style: italic;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-logo .logo-text {
    font-size: 80px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 5px;
    margin-left: 20px;
}

.hero-logo .logo-sports {
    color: #e31e24;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 14px;
    color: #e31e24;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.equipment-card {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.equipment-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.equipment-card p {
    color: #fff;
    margin-bottom: 25px;
}

.btn-more {
    background-color: #e31e24;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-more:hover {
    background-color: #c51820;
}

/* Discount Section */
.discount-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2387CEEB" width="1200" height="600"/></svg>') center/cover;
    background-color: #87CEEB;
    color: #fff;
}

.discount-label {
    font-size: 18px;
    color: #e31e24;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 15px;
}

.discount-title {
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.1;
}

.discount-text {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-label {
    font-size: 14px;
    color: #e31e24;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-heading {
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    background-color: #f0f0f0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-item.large {
    grid-row: span 2;
    height: 520px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-view-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #e31e24;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), #1a1a1a;*/
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-title {
    font-size: 14px;
    color: #e31e24;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonial-heading {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e31e24;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

/* Map Section */
.map-section {
    height: 400px;
    background-color: #e0e0e0;
    position: relative;
    filter: grayscale(1);
    overflow: hidden;
}
.map-pre {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 44%);
    z-index: 99999;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #e31e24;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e31e24;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #e31e24;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo .logo-z {
        font-size: 100px;
    }
    .hero-logo .logo-text {
        font-size: 45px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.large {
        height: 250px;
    }
    .section-heading, .discount-title, .gallery-heading {
        font-size: 32px;
    }
}