body {
    background-color: #f8f9fa;
}

.section {
    padding: 20px 0;
}

.card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: none;
}

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .split {
    grid-template-columns: 1fr 1fr;
    }
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pricing-table th {
    background-color: #f1f3f5;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: gray;
}

.gallery-img {
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .gallery-img {
    height: 300px;
    }
}

.hero {
    position: relative;
    height: 80vh;
    background: url("../images/courts/courts_2.jpg") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero {
    height: 60vh;
    }

    .hero h1 {
    font-size: 2rem;
    }
}

/* Footer link hover */
footer a.hover-link {
    transition: all 0.2s ease;
    display: inline-block;
}

footer a.hover-link:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}

/* Social icons hover */
footer .footer-icon {
    transition: all 0.2s ease;
    display: inline-block;
}

footer .footer-icon:hover {
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05);
}

/* Optional: subtle brand hover (if you ever re-enable it) */
footer h5 {
    transition: opacity 0.2s ease;
}

footer h5:hover {
    opacity: 0.85;
}

.court-card {
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    padding: 16px;
    transition: all 0.2s ease;
}

.court-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.court-title {
    font-weight: 600;
    margin-bottom: 12px;
}

/* Buttons */
.time-slot-btn {
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 6px 10px;
    transition: 0.15s ease;
}

/* Off-peak */
.time-slot-offpeak {
    border: 1px solid #28a745;
    color: #28a745;
    background: #f1fbf4;
}

.time-slot-offpeak:hover {
    background: #28a745;
    color: white;
}

/* Peak */
.time-slot-peak {
    border: 1px solid #964B00;
    color: #964B00;
    background: #fff1f1;
}

.time-slot-peak:hover {
    background: #964B00;
    color: white;
}

.time-slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================
   Peak (Brown) Styling
========================= */

.btn-outline-brown {
    color: #8B5A2B;
    border: 1px solid #8B5A2B;
    background-color: transparent;
    transition: all 0.2s ease;
}

.btn-outline-brown:hover {
    background-color: #8B5A2B;
    color: white;
    border-color: #8B5A2B;
}

.text-brown {
    color: #8B5A2B !important;
}

.badge.bg-brown {
    background-color: #8B5A2B;
}