/* ================= OUTER CARD (BACKGROUND) ================= */
.hours-card-container {
    position: absolute;
    color: black;
    left: 50%;
    bottom: 12%;              /* 👈 percentage instead of px */
    transform: translateX(-50%) scale(0.8);
    transform-origin: bottom center;
    width: 400px;
    max-width: 90%;
    background: linear-gradient(
        180deg,
        #F5CEB2 0%,
        #FEE1AA 45%,
        #E4A9C0 100%
    );
    padding: 2rem 1.75rem;
    z-index: 2;
}


/* ================= HOURS CARD ================= */
.hours-card {
    background: #fff;
    padding: 2.5rem 2rem;
    position: relative;
}

.hours-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid #000;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.day {
    letter-spacing: 0.35em;
    font-size: 1.2rem;
}

.time {
    color: #9b6b52;
    font-size: 1.05rem;
}

/* ================= CORNER TICKS ================= */
.corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.tl { top: 8px; left: 8px; border-top: 2px solid #000; border-left: 2px solid #000; }
.tr { top: 8px; right: 8px; border-top: 2px solid #000; border-right: 2px solid #000; }
.bl { bottom: 8px; left: 8px; border-bottom: 2px solid #000; border-left: 2px solid #000; }
.br { bottom: 8px; right: 8px; border-bottom: 2px solid #000; border-right: 2px solid #000; }

/* ================= SOCIALS ================= */
.socials {
    margin-top: 2.25rem;
    background: #fffaf0;
    padding: 2.25rem 1.75rem;
    position: relative;
    text-align: center;
}

.socials::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid #000;
}

.socials-title {
    letter-spacing: 0.45em;
    font-size: 1.35rem;
    margin-bottom: 1.75rem;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.icons a {
    width: 44px;
    height: 44px;
    border: 2px solid #1c1c2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #1c1c2e;
    text-decoration: none;
}

@media (max-width: 768px) {

    .day {
        font-size: 1rem;
        letter-spacing: 0.28em;
    }

    .time {
        font-size: 0.95rem;
    }

    .socials-title {
        font-size: 1.2rem;
        letter-spacing: 0.35em;
    }


}
