/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ---------- HEADER ---------- */
header.top-header {
    width: 100%;
    padding: 18px 7%;
    background-color: #C4A484; /* Light coffee latte */
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 125px;
    height: 125px;
}

.logo h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 5px 5px 5px black;
}

/* ============================
   TABLET (max-width: 992px)
============================ */
@media (max-width: 992px) {
    header.top-header {
        padding: 14px 5%;
    }

    .logo img {
        width: 90px;
        height: 90px;
    }

    .logo h1 {
        font-size: 1.9rem;
    }

    .nav-links {
        gap: 20px;
    }

    .contact-box {
        display: none; /* optional: hides phone box on tablet */
    }
}

/* ============================
   MOBILE (max-width: 768px)
============================ */
@media (max-width: 768px) {
    header.top-header {
        padding: 12px 5%;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    /* Hide desktop nav */
    .navbar {
        display: none;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 5px;
        transition: 0.3s;
    }

    /* Mobile dropdown menu */
    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: #C4A484;
        padding: 20px 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        z-index: 999;
    }

    .mobile-menu a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* ---------- NAVBAR ---------- */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.navbar a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    transition: 0.2s;
    text-shadow: 5px 5px 5px black;
}

.navbar a:hover {
    color: #2a1803;
}

.who-we-are {
    scroll-margin-top: 80px; /* adjust to your navbar height */
}

/* ============================
   TABLET (max-width: 992px)
============================ */
@media (max-width: 992px) {
    .navbar ul {
        gap: 20px;
    }

    .navbar a {
        font-size: 1.4rem;
    }
}

/* ============================
   MOBILE (max-width: 768px)
============================ */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #C4A484;
        padding: 25px 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        z-index: 999;
    }

    .mobile-menu a {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        text-shadow: 5px 5px 5px black;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        color: #2a1803;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* ---------- DROPDOWN ---------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 32px;
    left: 0;
    background: #111;
    padding: 10px 0;
    border-radius: 4px;
    min-width: 150px;
    transition: 0.2s ease;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #fff;
}

.dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* ---------- CONTACT BOX ---------- */
.contact-box {
    display: flex;
    align-items: center;
    background: #10B981;
    padding: 20px 30px;
    border-radius: 6px;
    gap: 10px;
    color: #fff;
    text-shadow: 5px 5px 5px black;
}

.small-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* UNIVERSAL CONTACT BOX FIX */
.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
    justify-content: center;
    text-align: center;
}

.contact-box > div {
    min-width: 0;
    flex: 1;
}

.contact-box a,
.contact-box span,
.phone-number {
    white-space: normal !important;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* ---------- HERO SECTION ---------- */
.hero {
    width: 100%;
    min-height: 100svh;
    padding: 120px 7% 60px; /* header space + breathing room */
    margin-top: 0;
    display: flex;
    align-items: center;
    background: #000;
    position: relative;
    overflow: hidden;
    background-image: url('image101.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Background image on the right */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

/* Content on the left */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #d3ad7f;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px black;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-shadow: 5px 5px 5px #C4A484;
}

.hero-text {
    font-size: 1.6rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 5px 5px 5px #C4A484;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    font-size: 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn.primary {
    background: #d3ad7f;
    color: #000;
}

.btn.primary:hover {
    background: #b8926c;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
    text-shadow: 5px 5px 5px black;
}

.btn.outline:hover {
    background: #fff;
    color: #000;
}

/* ============================
   MOBILE HERO (≤ 768px)
============================ */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 170px 7% 60px; /* extra top margin for portrait mobile */
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        background-position: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        z-index: 2;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        font-size: 1.4rem;
        padding: 12px 20px;
    }
}

/* ---------- WHO WE ARE SECTION ---------- */
.who-we-are {
    width: 100%;
    padding: 100px 7%;
    background-color: #C4A484; /* Light coffee latte */
}

.wwa-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px;
    gap: 60px;
}

/* LEFT SIDE */
.wwa-left {
    flex: 1;
}

.wwa-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.wwa-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    text-shadow: 5px 5px 5px black;
}

.wwa-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: white;
    text-shadow: 5px 5px 5px black;
}

/* RIGHT SIDE */
.wwa-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
    text-shadow: 5px 5px 5px black;
}

.wwa-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wwa-icon {
    width: 55px;
    height: 55px;
    text-shadow: 5px 5px 5px black;
    color: #555;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.wwa-item h4 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.wwa-item p {
    font-size: 1.5rem;
    color: white;
}

.wwa-icon {
    color: #10B981;
    font-size: 1.5rem;
    font-weight: bold;
}

.marsh-img {
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

/* MOBILE WHO WE ARE */
@media (max-width: 768px) {
    .who-we-are {
        padding: 70px 7%;
        text-align: center;
    }

    .wwa-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .wwa-left,
    .wwa-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .wwa-subtitle {
        font-size: 1.5rem;
    }

    .wwa-title {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .wwa-text {
        font-size: 1.3rem;
    }

    .wwa-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .wwa-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .wwa-item h4 {
        font-size: 1.5rem;
    }

    .wwa-item p {
        font-size: 1.2rem;
    }

    .marsh-img {
        width: 260px;
        height: 260px;
    }
}

/* TABLET WHO WE ARE */
@media (max-width: 992px) {
    .who-we-are {
        padding: 80px 5%;
    }

    .wwa-container {
        gap: 40px;
    }

    .wwa-title {
        font-size: 2.8rem;
    }

    .wwa-text {
        font-size: 1.4rem;
    }

    .wwa-item h4 {
        font-size: 1.6rem;
    }

    .wwa-item p {
        font-size: 1.3rem;
    }

    .wwa-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .marsh-img {
        width: 380px;
        height: 380px;
    }
}

/* ---------- SPECIAL COFFEE BEANS SECTION ---------- */
.special-beans {
    width: 100%;
    padding: 100px 7%;
    background: #0f0f0f;
    color: #fff;
    text-align: center;
    background-image: url('image106.png');
    background-size: cover;
    background-position: center;
    text-shadow: 5px 5px 5px black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#special-beans {
    scroll-margin-top: 175px;
}

.beans-subtitle {
    color: #10B981;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px black;
}

.beans-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    text-shadow: 5px 5px 5px black;
}

/* MOBILE SPECIAL BEANS */
@media (max-width: 768px) {
    .special-beans {
        padding: 70px 7%;
        text-align: center;
        background-position: center;
    }

    .beans-title {
        font-size: 2.4rem;
        line-height: 1.25;
        margin-bottom: 30px;
    }

    .beans-subtitle {
        font-size: 1.4rem;
    }

    .beans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }

    .bean-card {
        padding: 18px;
    }

    .bean-card h4 {
        font-size: 1.5rem;
    }

    .bean-card p {
        font-size: 1.2rem;
    }

    .bean-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 14px;
        font-size: 1.3rem;
    }
}

/* TABLET SPECIAL BEANS */
@media (max-width: 992px) {
    .special-beans {
        padding: 80px 5%;
        background-position: center;
    }

    .beans-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .beans-subtitle {
        font-size: 1.6rem;
    }

    .beans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bean-card h4 {
        font-size: 1.6rem;
    }

    .bean-card p {
        font-size: 1.3rem;
    }

    .bean-btn {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
}

/* ---------- GRID ---------- */
.beans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* TABLET GRID */
@media (max-width: 992px) {
    .beans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* MOBILE GRID */
@media (max-width: 768px) {
    .beans-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* ---------- CARD ---------- */
.bean-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s ease;
}

.bean-card:hover {
    transform: translateY(-6px);
}

.bean-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    margin-bottom: 15px;
}

.bean-card h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bean-card p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px black;
}

.bean-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #10B981;
    color: #fff;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    text-shadow: 5px 5px 5px black;
}

.bean-btn:hover {
    background: #0e9a6c;
}

/* MOBILE CARD */
@media (max-width: 768px) {
    .bean-card {
        padding: 16px;
        text-align: center;
    }

    .bean-img {
        height: 150px;
        border-radius: 6px;
    }

    .bean-card h4 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .bean-card p {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .bean-btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 14px;
        font-size: 1.3rem;
    }
}

/* TABLET CARD */
@media (max-width: 992px) {
    .bean-card {
        padding: 18px;
    }

    .bean-img {
        height: 160px;
    }

    .bean-card h4 {
        font-size: 1.6rem;
    }

    .bean-card p {
        font-size: 1.3rem;
    }

    .bean-btn {
        font-size: 1.3rem;
        padding: 9px 16px;
    }
}

/* ---------- SPECIAL MENU SECTION ---------- */
.special-menu {
    width: 100%;
    padding: 100px 7%;
    background-color: #C4A484; /* Light coffee latte */
    background-image: url('image110.png');
    background-size: cover;
    background-position: center;
    color: black;
}

.menu-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* MOBILE SPECIAL MENU */
@media (max-width: 768px) {
    .special-menu {
        padding: 70px 7%;
        text-align: center;
        background-position: center;
    }

    .menu-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .menu-left,
    .menu-right {
        width: 100%;
        max-width: 500px;
    }

    .menu-subtitle {
        font-size: 1.4rem;
    }

    .menu-title {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .menu-intro {
        font-size: 1.3rem;
    }

    .menu-list .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .menu-item h4 {
        font-size: 1.5rem;
    }

    .menu-item p {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.4rem;
    }
}

/* TABLET SPECIAL MENU */
@media (max-width: 992px) {
    .special-menu {
        padding: 80px 5%;
        background-position: center;
    }

    .menu-container {
        gap: 40px;
    }

    .menu-subtitle {
        font-size: 1.6rem;
    }

    .menu-title {
        font-size: 2.8rem;
    }

    .menu-intro {
        font-size: 1.4rem;
    }
}

/* LEFT SIDE FEATURED ITEM */
.menu-left {
    flex: 1;
    text-align: center;
}

.menu-subtitle {
    text-align: center;
}

.menu-img {
    width: 100%;
    height: 350px;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu-feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-feature-desc {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.menu-feature-price {
    font-size: 2rem;
    font-weight: 700;
    color: black;
}

/* MOBILE FEATURED ITEM */
@media (max-width: 768px) {
    .menu-left {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .menu-img {
        height: 240px;
        border-radius: 10px;
        margin-bottom: 18px;
    }

    .menu-feature-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .menu-feature-desc {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .menu-feature-price {
        font-size: 1.6rem;
    }
}

/* TABLET FEATURED ITEM */
@media (max-width: 992px) {
    .menu-left {
        text-align: center;
    }

    .menu-img {
        height: 300px;
    }

    .menu-feature-title {
        font-size: 2rem;
    }

    .menu-feature-desc {
        font-size: 1.4rem;
    }

    .menu-feature-price {
        font-size: 1.8rem;
    }
}

/* RIGHT SIDE MENU LIST */
.menu-right {
    width: 100%;
    color: #B08968;
    background-size: cover;
    background-position: center;
    font-size: 40px;
    text-shadow: 1px 1px 1px black;
}

.menu-section {
    margin: 40px 0 10px;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 2px black;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.menu-text h4 {
    margin: 0;
    font-size: 50px;
}

.menu-text p {
    margin: 4px 0 0;
    opacity: 0.8;
}

.price {
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
    color: #0e9a6c;
    font-size: 35px;
    text-shadow: 5px 5px 5px black;
}

.menu-description {
    margin: 10px 0 30px;
    opacity: 0.85;
    line-height: 1.5;
}

.menu-description,
.menu-text h4,
.menu-text p {
    text-align: left;
}

#menu-subtitle {
    scroll-margin-top: 175px;
}

/* MOBILE MENU LIST */
@media (max-width: 768px) {
    .menu-right {
        font-size: 26px;
        text-align: center;
    }

    .menu-section {
        font-size: 30px;
        margin: 25px 0 6px;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 0;
    }

    .menu-text h4 {
        font-size: 26px;
    }

    .menu-text p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .price {
        font-size: 24px;
        margin-left: 0;
    }

    .menu-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* TABLET MENU LIST */
@media (max-width: 992px) {
    .menu-right {
        font-size: 32px;
    }

    .menu-section {
        font-size: 38px;
        margin: 30px 0 8px;
    }

    .menu-item {
        padding: 12px 0;
    }

    .menu-text h4 {
        font-size: 32px;
    }

    .menu-text p {
        font-size: 1.3rem;
    }

    .price {
        font-size: 28px;
    }
}

/* ========== INFO SECTION LAYOUT ========== */
.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f5e6d3;
    margin: 60px auto;
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
    align-items: stretch;
    scroll-margin-top: 200px;
    font-size: 25px;
}

/* TABLET INFO SECTION */
@media (max-width: 992px) {
    .info-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        font-size: 22px;
        margin: 50px auto;
    }
}

/* MOBILE INFO SECTION */
@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        font-size: 20px;
        margin: 40px auto;
    }
}

/* LEFT IMAGE */
.info-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    margin: 50px 35px;
}

/* TABLET IMAGE */
@media (max-width: 992px) {
    .info-image img {
        width: 280px;
        height: 280px;
        margin: 40px auto;
    }
}

/* MOBILE IMAGE */
@media (max-width: 768px) {
    .info-image img {
        width: 220px;
        height: 220px;
        margin: 30px auto;
        display: block;
    }
}

/* OPENING HOURS */
.info-hours {
    background: #3b5f3b;
    color: #fff;
    padding: 40px 30px;
}

.hours-phone {
    color: #ffffff !important;
}

.info-hours h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-hours ul {
    list-style: none;
    padding: 0;
}

.info-hours li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.info-hours span {
    font-weight: bold;
}

.info-hours h4 {
    font-size: 25px;
}

/* RESERVATION BOX */
.info-reservation {
    background: #5a3e2b;
    color: #fff;
    padding: 40px 30px;
}

.info-reservation h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-reservation p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.contact-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: #10b981;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #0d966a;
}

/* MOBILE INFO HOURS & RESERVATION */
@media (max-width: 768px) {
    .info-hours,
    .info-reservation {
        padding: 25px 20px;
        text-align: center;
    }

    .info-hours h2,
    .info-reservation h2 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .info-hours ul {
        padding: 0;
    }

    .info-hours li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .info-hours h4 {
        font-size: 20px;
    }

    .info-reservation p {
        font-size: 0.9rem;
    }

    .contact-btn {
        width: 100%;
        max-width: 240px;
        padding: 10px 16px;
        font-size: 1rem;
        margin-top: 16px;
    }

    .info-hours ul,
    .info-hours li,
    .info-hours span {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* TABLET INFO HOURS & RESERVATION */
@media (max-width: 992px) {
    .info-hours,
    .info-reservation {
        padding: 30px 25px;
        align-items: center;
    }

    .info-hours a[href^="tel"] {
        color: #ffffff !important;
        text-decoration: none !important;
    }

    .info-hours h2,
    .info-reservation h2 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .info-hours li,
    .info-reservation p {
        font-size: 0.95rem;
    }

    .info-hours h4 {
        font-size: 22px;
    }

    .contact-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* ===========================
   MODERN FOOTER — CENTERED
=========================== */
footer,
.modern-footer {
    background: #C4A484 !important;
    color: #fff !important;
    margin-top: 30px;
}

/* Center the entire footer content */
.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    text-shadow: 5px 5px 5px #5a3e2b;
}

.footer-col {
    text-align: center;
}

.footer-col h4 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin: 6px 0;
    font-size: 25px;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: #2a1803;
}

/* MOBILE FOOTER COLUMNS */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 10px;
    }

    .footer-col {
        width: 100%;
        max-width: 300px;
    }

    .footer-col h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 18px;
        margin: 4px 0;
    }
}

/* TABLET FOOTER COLUMNS */
@media (max-width: 992px) {
    .footer-columns {
        gap: 40px;
        padding: 0 15px;
    }

    .footer-col h4 {
        font-size: 22px;
    }

    .footer-col a {
        font-size: 20px;
    }
}

/* SOCIAL ICONS — CENTERED */
.footer-social {
    max-width: 1300px;
    margin: 35px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    font-size: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-social a:hover {
    color: #2a1803;
    transform: scale(1.1);
}

/* TABLET SOCIAL ICONS */
@media (max-width: 992px) {
    .footer-social {
        gap: 18px;
    }
}












