/*

Theme Name: Coffee shop
Author: Xia
Version: 1.0
Description: A clean and beautiful coffee shop

*/

/*---------------------------General design------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    /* ✨ 新增：重置所有元素的外边距 */
    padding: 0;
    /* ✨ 新增：重置所有元素的内边距 */
}

:root {
    --coffee-dark: #2c2c2c;
    --coffee-brown: #7a4a2e;
    --coffee-accent: #c84233;
    --coffee-cream: #fdfaf7;
}

body {
    color: var(--coffee-dark);
    font-family: 'SoDoSans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    text-transform: capitalize;
    font-size: 4.5rem;
    color: #edecec;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

a {
    font-size: 1rem;
    transition: all 0.3s ease;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    color: #ffffff;
    background-color: #a22f22;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgb(144, 32, 32);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d14031;
    transform: translateY(-3px);
    box-shadow: 0 2px 5px rgb(255, 68, 68);
}

/*---------------------------Hero Section---------------------------*/
.hero-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(43, 43, 43, 0.6);
    overflow: hidden;
    min-height: 85vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    /* ✨ 新增：为伪元素定位 */
}

/* ✨ 新增：Hero Section 背景渐变遮罩 */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-section .container {
    /* ✨ 新增：容器层级 */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    /* ✨ 新增：限制内容宽度 */
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.hero-p {
    margin: 30px 0 40px;
    font-size: 1.25rem;
    color: #f0f0f0;
    line-height: 1.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------------------------Our Special Section---------------------------*/
.special-section {
    background-color: #f9f9f9;
}

.special-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.special-left {
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.special-left:hover {
    transform: scale(1.02);
}

.special-left img {
    height: 100%;
    object-fit: cover;
}

.special-right {
    width: 50%;
    padding: 20px 0;
}

.special-content {
    margin-bottom: 30px;
}

.special-content h2 {
    text-align: left;
    color: #2c2c2c;
}

.special-content p {
    color: #666;
    line-height: 1.8;
}

/*---------------------------Menu Highlights---------------------------*/
.menu-section {
    background-color: #ffffff;
}

.menu-section>.container>p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    color: #2c2c2c;
}

.card p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.card .price {
    padding: 0 20px 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #c84233;
}

/*---------------------------Header---------------------------*/
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

/* Logo Section */
.logo-holder {
    flex-shrink: 0;
    /* ✨ 新增：防止缩小 */
    z-index: 1001;
}

.logo-holder a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-holder a:hover {
    transform: scale(1.05);
}

.logo-holder img {
    height: 60px;
    width: auto;
    max-width: 150px;
    display: block;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: #c84233;
}

/* Desktop Navigation */
.header-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.header-menu li {
    position: relative;
}

.header-menu li a {
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 500;
    color: var(--coffee-dark);
}

.header-menu li a::after {
    bottom: 4px;
    height: 2px;
    width: 40%;
}

.header-menu li a:hover {
    color: var(--coffee-accent);
}


.header-menu li.current-menu-item a {
    background: none;
    color: var(--coffee-accent);
}


.header-menu li a:hover::after,
.header-menu li.current-menu-item a::after,
.header-menu li.current_page_item a::after {
    transform: translateX(-50%) scaleX(1);
}

/* English | Français */
.lang-switcher  {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lang-switcher li a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  opacity: 0.6;
}

.lang-switcher li.current-lang a {
  opacity: 1;
  border-bottom: 2px solid #c84233;
}

.lang-switcher li a:hover {
  opacity: 1;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle i {
    font-size: 1.5rem;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.mobile-toggle:hover i {
    color: #c84233;
}

.hamburger,
.xmark {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/*---------------------------Footer---------------------------*/
.site-footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
}

/* 半透明遮罩，保证可读性 */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.55);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #dfdfdf;
}

/* 主布局 */
.footer-flex {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr 1fr 1.2fr;
    align-items: start;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .custom-logo-link {
    display: inline-flex;
    margin-bottom: 0.85rem;
}

.footer-brand .custom-logo {
    width: auto;
    max-width: 96px;
    height: auto;
}

.footer-nav {
    opacity: 0.8;
}

.footer-brand img {
    width: 96px;
    margin-bottom: 1rem;
}

.site-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-info,
.footer-nav a {
    color: rgba(255, 255, 255, .85);
}

.footer-address,
.footer-hours {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
    padding-bottom: 0.5rem;
}


.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}


.footer-nav a:hover {
    color: #fff;
}

.footer-location {
    max-width: 100%;
}

.footer-map {
    border-radius: 16px;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.9;
    min-height: 180px;
    overflow: hidden;
}


.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #dbdbdb;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #d6d6d6;
}

/*---------------------------About Page---------------------------*/
/* Banner Section */
.menu-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(43, 43, 43, 0.4);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* ✨ 新增：Banner 渐变遮罩 */
.menu-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Brand Story Section */
.brand-section {
    background-color: #ffffff;
}

.story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story h1 {
    color: var(--coffee-dark);
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* ✨ 新增：标题装饰线 */
.story h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dd4d4d, #ba3030);
    border-radius: 2px;
}

.story h3 {
    color: var(--coffee-accent);
    font-size: 1.5rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.story p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.125rem;
}

/* Team Section */
.team {
    background-color: #f9f9f9;
}

.team h1 {
    color: #2c2c2c;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.img1,
.img2 {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
}

/* ✨ 新增：图片悬停效果 */
.img1:hover,
.img2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.img1 img,
.img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* ✨ 新增：图片悬停放大效果 */
.img1:hover img,
.img2:hover img {
    transform: scale(1.1);
}

/*---------------------------Menu Archive Page---------------------------*/
.menu-bg-layer {
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin: 0;
}

.menu-bg-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 250, 250, 0.65);
    z-index: 0;
}

.menu-bg-layer {
    position: relative;
}

.menu-bg-layer>.container {
    position: relative;
    z-index: 1;
}

.menu-archive {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 2rem;
    background-color: transparent;
}

.menu-archive section {
    padding: 0;
}

/* Menu Header */
.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 60px 0 40px;
}

.menu-header h1 {
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: var(--coffee-dark);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* ✨ 新增：标题装饰线 */
.menu-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c63e3e, #c30a0a);
    border-radius: 2px;
}

/* Category Section */
.menu-category {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
}

/* ✨ 新增：分类悬停效果 */
.menu-category:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transform: none;
}

.menu-category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--coffee-accent);
    padding-bottom: 0.8rem;
    color: var(--coffee-dark);
    font-weight: 600;
}

/* Menu Items */
.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.menu-items .menu-item {
    background: var(--coffee-cream);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    transition: transform .3s ease;
}


.menu-item:hover {
    transform: translateY(-2px);
}


/* Thumbnail */
.menu-thumb img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #f3ebe3;
}

/* ✨ 新增：缩略图悬停效果 */
.menu-item:hover .menu-thumb img {
    transform: scale(1.1);
}

/* Menu Info */
.menu-title {
    font-size: 1rem;
    margin-top: .8rem;
    font-weight: 600;
}

/* ✨ 新增：标题悬停效果 */
.menu-item:hover .menu-title {
    color: #c84233;
}

/* Price */
.menu-price {
    background: none;
    padding: 0;
    margin-top: .5rem;
    font-size: .95rem;
    font-weight: 600;
    color: var(--coffee-brown);
}

/*---------------------------Contact Page---------------------------*/
.contact-page {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1rem;
}

/* Header */
.contact-header {
    text-align: center;
    padding: 40px 0;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--coffee-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* ✨ 新增：标题装饰线 */
.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ba3030, #ba3030);
    border-radius: 2px;
}

.contact-intro {
    max-width: 650px;
    margin: 30px auto 0;
    color: #666;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--coffee-cream);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.contact-block {
    position: relative;
    padding-left: 40px;
}

/* ✨ 新增：信息块图标 */
.contact-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #c84233;
    border-radius: 50%;
    opacity: 0.2;
}

.contact-block h3 {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 700;
}

.contact-block p,
.contact-block li {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-block a {
    color: var(--coffee-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ✨ 新增：链接悬停效果 */
.contact-block a:hover {
    color: #c84233;
    text-decoration: underline;
}

/* Opening Hours */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    margin-bottom: 0.5rem;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.opening-hours li:last-child {
    border-bottom: none;
}

/* Map Container */
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* ✨ 新增：地图悬停效果 */
.contact-map:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    display: block;
}


/* responsive */
@media (max-width: 1024px) {

    /* ---------- General ---------- */
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }

    /* ---------- Hero ---------- */
    .hero-section {
        min-height: 70vh;
    }

    .hero-content {
        max-width: 100%;
    }

    /* ---------- Special Section ---------- */
    .special-flex {
        gap: 40px;
    }

    /* ---------- Menu Highlights ---------- */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* ---------- Footer ---------- */
    .footer-flex {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* ---------- Menu Archive ---------- */
    .menu-archive {
        padding: 0 1.5rem;
    }

    /* ---------- Contact ---------- */
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* ---------- Typography ---------- */
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    /* ---------- Header ---------- */

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease;
        z-index: 1000;
        padding: 80px 30px;
        display: block;
        /* ⚠️ 永远 block，靠位置控制 */
    }

    .site-header.menu-open .main-navigation {
        right: 0;
    }

    .header-menu {
        flex-direction: column;
        gap: 20px;
    }

    .header-menu li a {
        font-size: 1.2rem;
        padding: 12px 0;
    }

    /* Toggle button */
    .mobile-toggle {
        display: block;
    }

    .hamburger {
        display: inline;
    }

    .xmark {
        display: none;
    }

    .site-header.menu-open .hamburger {
        display: none;
    }

    .site-header.menu-open .xmark {
        display: inline;
    }

    /* Overlay */
    .mobile-menu-overlay {
        display: none;
    }

    .site-header.menu-open~.mobile-menu-overlay {
        display: block;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* ---------- Hero ---------- */
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .hero-content {
        animation: none;
    }

    /* ---------- Special Section ---------- */
    .special-flex {
        flex-direction: column;
    }

    .special-left,
    .special-right {
        width: 100%;
    }

    /* ---------- Menu Highlights ---------- */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* ---------- About / Team ---------- */
    .image-grid {
        grid-template-columns: 1fr;
    }

    /* ---------- Menu Archive ---------- */
    .menu-header h1 {
        font-size: 2.5rem;
    }

    .menu-category {
        padding: 30px 20px;
    }

    .menu-items .menu-item {
        grid-template-columns: 60px 1fr auto;
        gap: 1rem;
    }

    /* ---------- Contact ---------- */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map iframe {
        height: 320px;
    }

    /* ---------- Footer ---------- */
    .footer-flex {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand .custom-logo-link {
        justify-content: center;
        margin-bottom: 0.65rem;
    }

    .footer-brand .custom-logo,
    .footer-brand img {
        max-width: 120px;
        width: 120px;
    }

    .site-footer h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .footer-address,
    .footer-hours,
    .footer-nav a,
    .footer-bottom p {
        font-size: 0.95rem;
    }

    .footer-map {
        height: 200px;
    }
}

@media (max-width: 480px) {

    /* ---------- Typography ---------- */
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* ---------- Buttons ---------- */
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* ---------- Hero ---------- */
    .hero-p {
        font-size: 1.05rem;
    }

    /* ---------- Menu Archive ---------- */
    .menu-items .menu-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        text-align: left;
    }

    .menu-price {
        align-self: flex-start;
    }

    /* ---------- Contact ---------- */
    .contact-page {
        margin: 2rem auto;
    }

    .contact-map iframe {
        height: 260px;
    }

    .site-footer {
        padding: 3rem 0 1.8rem;
    }

    .footer-flex {
        gap: 2rem;
    }

    .footer-brand .custom-logo,
    .footer-brand img {
        max-width: 132px;
        width: 132px;
    }

    .footer-map {
        min-height: 170px;
        height: 170px;
    }
}
