/* General Page Styling */
body {
    font-family: 'Comfortaa', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #FFFFFF; /* White text for readability */
    background: radial-gradient(circle, #013979, #069494); /* Gradient background */
}

/* Centered Logo and Navbar */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.logo {
    max-height: 120px; /* Adjusted size for better visibility */
    object-fit: contain;
    margin-bottom: 1rem; /* Space between logo and navbar */
}

nav {
    background-color: #2596be;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    color: #1a6f8a;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #2596be;
}

/* Business Hours Section */
.hours-section {
    background-color: #1a1b2e; /* Slightly lighter than the page background */
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

.hours-section h2 {
    font-size: 24px;
    color: #2596be;
    margin-bottom: 10px;
}

.hours-section ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.hours-section li {
    margin: 5px 0;
}

/* General Payment Section Styling */
.payment-method-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1b2e; /* Match the theme */
    border-radius: 8px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.payment-method-container h2 {
    color: #2596be;
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-method-container p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Updated Button for Website Theme */
.button {
    text-decoration: none;
    line-height: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #302d41; /* Match website background */
    color: #fff; /* White text */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 10px auto;
    padding: 10px 20px;
}

.button-decor {
    position: absolute;
    inset: 0;
    background-color: var(--clr, #2596be); /* Default to site’s teal color */
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 0;
}

.button-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.button__icon {
    width: 48px;
    height: 40px;
    background-color: var(--clr, #2596be); /* Same teal color */
    display: grid;
    place-items: center;
}

.button__text {
    display: inline-block;
    transition: color 0.2s;
    padding: 2px 1.5rem 2px;
    padding-left: 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
}

.button:hover .button__text {
    color: #fff;
}

.button:hover .button-decor {
    transform: translate(0);
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Media Queries for Responsive Design */
@media (max-width: 600px) {
    .logo {
        max-height: 100px; /* Adjust for smaller screens */
    }

    .payment-method-container {
        width: 100%;
        padding: 15px;
    }

    .hours-section ul {
        font-size: 16px;
        line-height: 1.6;
    }

    .button {
        flex-direction: column;
        padding: 12px 16px;
    }

    .button__text {
        max-width: 100%;
        text-align: center;
    }

    nav {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
