/* ===========================
   やきとりおおくら - style.css
   黒ベース・赤差し色・大衆居酒屋スタイル
   =========================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* ---------- リセット ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- カラー変数 ---------- */
:root {
  --black:       #0d0d0d;
  --black-mid:   #1a1a1a;
  --black-soft:  #242424;
  --red:         #cc1a1a;
  --red-bright:  #e82020;
  --red-dark:    #8b0f0f;
  --white:       #f5f0eb;
  --white-dim:   #c8c0b8;
  --gold:        #c8a84b;
  --border:      #2e2e2e;
  --font-serif:  'Noto Serif JP', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ---------- 共通コンテナ ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.title-deco {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 2px solid var(--red-dark);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo .logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-jp {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
}

.header-nav .nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--red-bright);
}

.nav-link.reserve-btn {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.8rem;
  border: 1px solid var(--red);
  transition: background 0.2s, color 0.2s;
}

.nav-link.reserve-btn:hover {
  background: transparent;
  color: var(--red-bright);
}

/* ---------- ハンバーガー ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- モバイルメニュー ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--black-mid);
  border-bottom: 2px solid var(--red-dark);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 18px 28px;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover {
  background: var(--black-soft);
  color: var(--red-bright);
}

/* ---------- ヒーローセクション ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.3) 0%,
    rgba(13,13,13,0.1) 40%,
    rgba(13,13,13,0.7) 80%,
    rgba(13,13,13,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--white-dim);
  letter-spacing: 0.3em;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.15em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--white-dim);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  border-top: 1px solid rgba(200,168,75,0.4);
  border-bottom: 1px solid rgba(200,168,75,0.4);
  padding: 12px 0;
}

.hero-info-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 28px;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}

.info-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.info-value a {
  color: var(--white);
  transition: color 0.2s;
}

.info-value a:hover {
  color: var(--red-bright);
}

.hero-info-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-dim);
}

.btn-secondary:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-dim), transparent);
  animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- お知らせ帯 ---------- */
.info-ticker {
  background: var(--red-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 42px;
}

.ticker-label {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
}

.ticker-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 0.08em;
  animation: tickerScroll 24s linear infinite;
  padding-left: 100%;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- お店についてセクション ---------- */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-catch-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-lead {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--black-soft);
  border-left: 3px solid var(--red);
}

.feature-icon {
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-serif);
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* 画像は設けず、テキスト側をフル活用 */
.about-img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-img-large {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-img-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-small {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- こだわり帯 ---------- */
.pride-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.pride-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.pride-item {
  padding: 28px 20px;
}

.pride-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pride-unit {
  font-size: 0.75rem;
}

.pride-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.pride-desc {
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-top: 8px;
  line-height: 1.6;
}

/* ---------- メニューセクション ---------- */
.menu-section {
  background: var(--black);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}

.menu-tab {
  background: none;
  border: none;
  color: var(--white-dim);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 14px 36px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.menu-tab.active,
.menu-tab:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red-bright);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-intro {
  text-align: center;
  margin-bottom: 36px;
}

.menu-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.menu-intro-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.menu-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.menu-card:hover {
  border-color: var(--red-dark);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.3s;
}

.menu-card:hover .menu-card-img {
  filter: brightness(1);
  transform: scale(1.03);
}

.menu-card-img-wrap {
  overflow: hidden;
  position: relative;
}

/* ---------- 定食カードスライドショー ---------- */
.card-slider {
  position: relative;
  padding-top: 75%; /* 4:3 アスペクト比 */
  overflow: hidden;
}

.card-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.card-slide.active {
  opacity: 1;
}

/* カードスライダーの高さは子要素の aspect-ratio で確保 */
.card-slider .menu-card-img {
  aspect-ratio: 4 / 3;
}

.menu-card-body {
  padding: 16px 18px;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.menu-card-note {
  font-size: 0.78rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.menu-notice {
  text-align: center;
  font-size: 0.8rem;
  color: var(--white-dim);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  letter-spacing: 0.08em;
}

/* ---------- 飲み物セクション ---------- */
.drink-section {
  background: var(--black-mid);
  padding: 80px 0;
}

.drink-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.drink-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.drink-text-col {}

.drink-catch {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.drink-catch strong {
  color: var(--red);
}

.drink-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 32px;
}

.drink-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drink-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

.drink-list-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
}

/* ---------- 営業情報セクション ---------- */
.info-section {
  background: var(--black);
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  font-family: var(--font-serif);
  color: var(--white-dim);
  width: 32%;
  white-space: nowrap;
}

.info-table td {
  color: var(--white);
}

.info-table td a {
  color: var(--red-bright);
  transition: opacity 0.2s;
}

.info-table td a:hover {
  opacity: 0.8;
}

.info-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--white-dim);
  line-height: 1.8;
  border-left: 2px solid var(--red-dark);
  padding-left: 12px;
}

/* ---------- 地図 ---------- */
.map-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(1.2);
}

/* ---------- ご予約 ---------- */
.reserve-section {
  background: var(--black-mid);
  padding: 80px 0;
  text-align: center;
}

.reserve-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.reserve-sub {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 36px;
  line-height: 1.8;
}

.reserve-tel {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.reserve-tel:hover {
  color: var(--red-bright);
}

.reserve-hours {
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-bottom: 36px;
  letter-spacing: 0.12em;
}

.reserve-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 2px solid var(--border);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sns-btn:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--black-mid);
  border-top: 2px solid var(--red-dark);
  padding: 40px 0 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer-logo span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.footer-address {
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--red-bright);
}

.footer-copy {
  font-size: 0.68rem;
  color: #555;
  letter-spacing: 0.08em;
}

/* ---------- トップへ戻るボタン ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--red-bright);
}

/* ===========================
   レスポンシブ (モバイル)
   =========================== */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pride-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .drink-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .drink-img {
    aspect-ratio: auto;
    width: 100%;
    max-height: none;
    object-fit: contain;
    background: var(--black-soft);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map-wrap {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .hero-info-divider {
    display: none;
  }

  .hero-info-strip {
    flex-direction: column;
    gap: 0;
  }

  .hero-info-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-info-item:last-child {
    border-bottom: none;
  }

  .menu-tab {
    padding: 12px 20px;
    font-size: 0.82rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .reserve-sns {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    gap: 16px;
  }
}
.mobile-nav-insta {
  color: var(--red-bright);
  letter-spacing: 0.18em;
}

.mobile-nav-insta:hover {
  color: var(--red-bright);
}
