:root {
    --primary-color: #2C003E;
    --secondary-color: #B8E0FF;
    --tertiary-color: #ffffff;
}

/* ============================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
}

.title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.subtitle {
    font-size: 24px;
    color: var(--primary-color);
    font-family: 'Kaushan Script', cursive;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}

.background {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

/* ============================== */
.clinic-hours-section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #173d7a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.clinic-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    overflow: hidden;
}

.clinic-table thead {
    background: linear-gradient(to right, #173d7a, #246ee2);
    color: #fff;
}

.clinic-table thead th {
    padding: 16px 20px;
    font-size: 18px;
    text-align: left;
}

.clinic-table tbody tr {
    transition: background 0.3s;
}

.clinic-table tbody tr:hover {
    background: rgba(23, 61, 122, 0.05);
}

.clinic-table tbody td {
    padding: 14px 20px;
    font-size: 16px;
    color: #333;
}

.clinic-table tbody tr.sunday-row {
    background: #ffe5e5;
    color: #c0392b;
    font-weight: 600;
}

.clinic-table tbody tr.sunday-row td {
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* ============================ */
.banner {
    background-image: url(../images/banner/1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .banner {
        height: 24vh;
        width: 100%;
        background-position: top center;
    }
}

/* ============================ */
.list-group-item {
    margin-bottom: 10px;
    padding: 15px;
    border: none;
    background: #f1f1f1;
    color: #333;
    border-radius: 5px;
    transition: all 0.7 ease-in-out;
}

.btn {
    position: relative;
    border-radius: 5px;
    background: #183153;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
    display: inline-block; /* This will make the button behave correctly */
}

.btn:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #ffd401;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    top: 0;
}

.btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn span {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 2px;
    padding-left: 2px;
    color: #fff;
    font-size: 1.125em;
    font-weight: 700;
    /* letter-spacing: 0.3em; */
    z-index: 20;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.btn:hover span {
    color: #183153;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}
