/* Title Section */
.title-section {
    position: relative;
    z-index: 1;
    background: none;
    padding: 1.8rem 0.8rem;
    border-radius: 0px;
    border: none;
    text-align: center;
    backdrop-filter: blur(5px);
    color: rgb(63, 63, 63);
    max-width: 30%;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.title-section:hover {
    background: none;
    color: #3f3f3f;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

/* Pricing Section */
.pricing-section {
    padding: 3rem 2rem;
    background: none;
    display: flex;
    justify-content: center;
}

.pricing-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0.8rem;
    width: fit-content;
}

/* Table Header */
.pricing-row.header-row {
    grid-column: 1 / -1;
    display: contents;
}

.pricing-row.header-row .pricing-col {
    font-weight: 700;
    font-size: 3rem;
    color: #333;
    padding: 1rem 1.5rem;
    background: none;
    border-radius: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'Graffiti2', sans-serif;
    letter-spacing: 5px;
}

/* Pricing Rows */
.pricing-row {
    display: contents;
}

.pricing-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: #3d3d3d9d;
    border-radius: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.col-service {
    justify-content: flex-start;
    min-width: 200px;
}

.col-price {
    justify-content: center;
    white-space: nowrap;
}

.col-reserve {
    justify-content: center;
}

/* Service Name */
.service-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fdfcfc;
    text-align: left;
}

/* Price Box */
.price-box {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(28, 241, 57);
}

.price.original-price {
    text-decoration: line-through;
    color: rgb(28, 241, 57);
    font-size: 1rem;
}

.price.discounted {
    color: rgb(238, 255, 0);
}

/* Reserve Button Small */
.reserve-btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
    font-family: 'Graffiti2', sans-serif;
}

.reserve-btn-small:hover {
    transform: translateY(-2px);
    color: rgb(0, 165, 241);
}

.reserve-btn-small:active {
    transform: translateY(0);
}

/* Content Section */
.content-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: none;
    padding: 3rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ecf0f1;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 12vh;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .title-section h1 {
        font-size: 1.8rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 500px;
        gap: 1rem;
    }

    .pricing-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pricing-row.header-row {
        display: none;
    }

    .pricing-col {
        padding: 1rem;
        grid-column: 1 / -1;
    }

    .col-service {
        min-width: auto;
    }

    .service-name {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }

    .reserve-btn-small {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 14vh;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .nav-buttons {
        flex-wrap: wrap;
    }

    .nav-btn {
        flex: 1 1 50%;
        font-size: 0.8rem;
        padding: 0.7rem;
    }

    .title-section h1 {
        font-size: 1.5rem;
    }

    .pricing-section {
        padding: 1.5rem 0.5rem;
    }

    .pricing-col {
        padding: 0.8rem;
    }

    .content-section {
        padding: 1.5rem 0.5rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .content-section p {
        font-size: 0.9rem;
    }
}