/* ========================================
   OPENING HOURS SECTION - FULLY RESPONSIVE
   ======================================== */

.opening-hours-section {
    position: relative;
    background-image: url('../../image/bg/wall-rotate.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opening-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

/* ---- SCHEDULE CARD (CENTER) ---- */

.schedule-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Section Title */
.schedule-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.schedule-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #c9a14a 100%);
    border-radius: 2px;
}

/* Hours List */
.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-card li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease;
}

.schedule-card li:hover {
    background-color: rgba(245, 158, 11, 0.05);
    padding: 1.2rem 0.5rem;
    border-radius: 4px;
}

.schedule-card li:last-child {
    border-bottom: none;
}

/* Day Names */
.schedule-card li span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* Times */
.schedule-card li span:last-child {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f59e0b;
    white-space: nowrap;
}

/* ---- SIDE IMAGE CARDS ---- */

.hours-card-left, .hours-card-right {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hours-card-left:hover, .hours-card-right:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.hours-card-left img, .hours-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hours-card-left:hover img, .hours-card-right:hover img {
    transform: scale(1.05);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: background 0.4s ease;
}

.hours-card-left:hover .card-overlay, .hours-card-right:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.card-overlay h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ---- CIRCULAR LOGO BADGE ---- */

.image-circle-left {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    bottom: 3rem;
    left: 14%;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
}

.image-circle-left:hover,
.image-circle-right:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.image-circle-left img,
.image-circle-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-circle-right {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    bottom: 3rem;
    right: 14%;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .opening-hours-section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .opening-hours-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hours-card-left {
        grid-column: 1;
        grid-row: 1;
    }

    .schedule-card {
        grid-column: 1 / 3;
        grid-row: 2;
        padding: 2.5rem 2rem;
    }

    .hours-card-right {
        grid-column: 2;
        grid-row: 1;
    }

    .schedule-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .schedule-card li {
        padding: 1rem 0;
    }

    .schedule-card li span:first-child {
        font-size: 0.95rem;
    }

    .schedule-card li span:last-child {
        font-size: 0.9rem;
    }

    .card-overlay h4 {
        font-size: 1.5rem;
    }

    .image-circle-left,
    .image-circle-right {
        width: 85px;
        height: 85px;
        bottom: 2rem;
    }
}
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .opening-hours-section {
        padding: 2.5rem 1rem;
    }

    .opening-hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hours-card-left {
        grid-column: 1;
        aspect-ratio: 4 / 3;
    }

    .hours-card-right {
        grid-column: 1;
        aspect-ratio: 4 / 3;
    }

    .schedule-card {
        grid-column: 1;
        grid-row: auto;
        padding: 2rem 1.5rem;
    }

    .schedule-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .schedule-card ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .schedule-card li {
        grid-column: auto;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(201, 161, 74, 0.08) 100%);
        padding: 1rem;
        border: 1px solid rgba(245, 158, 11, 0.2);
        border-radius: 8px;
        border-bottom: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .schedule-card li:hover {
        background-color: rgba(245, 158, 11, 0.12);
        padding: 1rem;
        border-radius: 8px;
    }

    .schedule-card li span:last-child {
        width: 100%;
        text-align: right;
    }

    .card-overlay h4 {
        font-size: 1.3rem;
    }

    .image-circle-left,
    .image-circle-right {
        width: 80px;
        height: 80px;
        bottom: 1.5rem;
        border: 3px solid rgba(255, 255, 255, 0.95);
    }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
    .opening-hours-section {
        padding: 2rem 1rem;
        gap: 0;
    }

    .opening-hours-section::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .opening-hours-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hours-card-left, .hours-card-right {
        aspect-ratio: 16 / 10;
        border-radius: 12px;
    }

    .schedule-card {
        padding: 1.8rem 1.2rem;
        border-radius: 12px;
    }

    .schedule-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .schedule-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .schedule-card ul {
        grid-template-columns: 1fr;
    }

    .schedule-card li {
        grid-template-columns: auto 1fr;
        padding: 0.9rem;
        gap: 0.7rem;
        align-items: center;
    }

    .schedule-card li span:first-child {
        font-size: 0.9rem;
    }

    .schedule-card li span:last-child {
        font-size: 0.85rem;
        text-align: right;
    }

    .card-overlay {
        padding: 1.5rem;
    }

    .card-overlay h4 {
        font-size: 1.1rem;
    }

    .image-circle-left,
    .image-circle-right {
        width: 75px;
        height: 75px;
        bottom: 1.2rem;
        border-width: 2px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .opening-hours-section {
        padding: 1.5rem 0.75rem;
        background-attachment: scroll;
    }

    .opening-hours-grid {
        gap: 1rem;
    }

    .hours-card-left, .hours-card-right {
        aspect-ratio: 16 / 9;
    }

    .schedule-card {
        padding: 1.5rem 1rem;
    }

    .schedule-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .schedule-card li {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .schedule-card li span:first-child {
        font-size: 0.85rem;
    }

    .schedule-card li span:last-child {
        font-size: 0.8rem;
    }

    .card-overlay {
        padding: 1rem;
    }

    .card-overlay h4 {
        font-size: 1rem;
    }

    .image-circle-left,
    .image-circle-right {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }
}

/* Small Mobile - 360px and below */
@media (max-width: 360px) {
    .opening-hours-section {
        padding: 1rem 0.5rem;
    }

    .schedule-card {
        padding: 1.2rem 0.8rem;
    }

    .schedule-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .schedule-card li {
        padding: 0.7rem;
        gap: 0.5rem;
    }

    .schedule-card li span {
        font-size: 0.8rem;
    }

    .card-overlay h4 {
        font-size: 0.95rem;
    }

    .image-circle-left,
    .image-circle-right {
        width: 60px;
        height: 60px;
    }
}