/* ==========================================================================
   METEOR ROOFTOP BAR & RESTAURANT - LUXURY ROOFTOP THEME
   Palette: Cosmic Obsidian (#07070c), Deep Twilight (#0e0d17),
   Sunset Copper Glow (#ff8e3c), Warm Starlight (#ffad66)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #07070c;
  --bg-section-alt: #0e0d17;
  --bg-card: #141221;
  --bg-card-hover: #1c1a2e;
  --accent-primary: #ff8e3c;
  --accent-light: #ffad66;
  --accent-dark: #d96918;
  --accent-gradient: linear-gradient(135deg, #ffad66 0%, #ff8e3c 50%, #d96918 100%);
  --text-pure: #ffffff;
  --text-creme: #f3efe6;
  --text-muted: #9c97aa;
  --border-accent: rgba(255, 142, 60, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --shadow-lux: 0 20px 45px rgba(0,0,0,0.85);
  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background-color: var(--bg-dark);
  color: var(--text-creme);
  font-family: var(--font-sans);
  line-height: 1.65;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 { font-family: var(--font-serif); letter-spacing: 0.06em; font-weight: 600; }

.accent-gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
  color: var(--accent-primary); text-transform: uppercase; margin-bottom: 0.6rem;
  line-height: 1;
}
.section-badge::before, .section-badge::after {
  content: ''; display: inline-block; width: 24px; height: 1px; background: var(--accent-primary);
}

/* NAVBAR */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7, 7, 12, 0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-accent);
}

.nav-inner {
  max-width: 1350px; margin: 0 auto; padding: 0.75rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}

.brand-wrapper { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; min-width: 0; }
.brand-logo-img {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1.5px solid var(--accent-primary); background: #ffffff;
  padding: 2px; object-fit: cover; box-shadow: 0 0 18px rgba(255,142,60,0.35);
  flex-shrink: 0; transition: transform 0.3s ease;
}
.brand-wrapper:hover .brand-logo-img { transform: scale(1.05); }

.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-text .logo-title {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--accent-primary); line-height: 1;
}
.brand-text .logo-subtitle {
  font-size: 0.54rem; letter-spacing: 0.26em; color: var(--text-muted);
  text-transform: uppercase; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: var(--text-creme); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; transition: var(--transition);
}
.nav-links a:hover { color: var(--accent-primary); }

/* CUSTOM DROPDOWN */
.lang-dropdown-wrapper { position: relative; flex-shrink: 0; }
.lang-dropdown-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--bg-card); border: 1px solid var(--border-accent);
  color: var(--accent-light); padding: 0.45rem 0.8rem; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.lang-dropdown-btn:hover { background: var(--bg-card-hover); border-color: var(--accent-primary); }
.lang-flag-emoji { font-size: 1.05rem; line-height: 1; }
.dropdown-chevron { font-size: 0.6rem; color: var(--accent-primary); transition: transform 0.3s ease; }
.lang-dropdown-wrapper.active .dropdown-chevron { transform: rotate(180deg); }

.lang-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0; width: 180px;
  background: rgba(14, 13, 23, 0.98); backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent); border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.8); padding: 0.4rem 0;
  display: none; flex-direction: column; z-index: 1001;
}
.lang-dropdown-wrapper.active .lang-dropdown-menu { display: flex; }

.lang-dropdown-item {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.9rem;
  color: var(--text-creme); text-decoration: none; font-size: 0.8rem; transition: var(--transition);
}
.lang-dropdown-item:hover { background: rgba(255, 142, 60, 0.15); color: var(--accent-light); }
.lang-dropdown-item.active { color: var(--accent-primary); font-weight: 700; background: rgba(255, 142, 60, 0.08); }
.lang-dropdown-item .check-icon { margin-left: auto; font-size: 0.75rem; }

/* HERO SECTION (100dvh Tam Ekran) */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 85px 1.5rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(7,7,12,0.45) 0%, rgba(7,7,12,0.6) 60%, rgba(7,7,12,0.95) 100%),
              url('../images/hero-bg.webp') center center / cover no-repeat;
  overflow: hidden;
}

.hero-content {
  max-width: 860px;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-emblem {
  width: 175px;  /* 125px yerine %40 artış */
  height: 175px; /* 125px yerine %40 artış */
  margin: 0 auto 1.1rem auto;
  border-radius: 50%;
  border: 3px solid var(--accent-primary);
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 0 35px rgba(255, 142, 60, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-emblem:hover { transform: scale(1.06); }
.hero-emblem img { width: 100%; height: 100%; object-fit: contain; }

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
  color: var(--text-pure);
}

.hero-desc {
  font-size: 0.96rem;
  color: var(--text-creme);
  max-width: 720px;
  margin: 0 auto 1.8rem auto;
  font-weight: 300;
  line-height: 1.7;
}

.hero-content .btn-accent {
  display: inline-flex;
  width: auto;
  min-width: 210px;
  max-width: 260px;
  height: 48px;
  padding: 0 2.2rem;
  letter-spacing: 0.16em;
  border-radius: 4px;
  margin: 0 auto;
}

/* ABOUT & VISUALS */
.about-visuals-section {
  position: relative;
  background-color: var(--bg-section-alt);
  padding: 5.5rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}
.about-visuals-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 4rem;
  align-items: stretch;
  width: 100%;
}

.about-col-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-width: 0;
}
.about-col-info > div:first-child { display: flex; flex-direction: column; }
.about-main-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-pure);
}
.about-story-text {
  font-size: 0.94rem;
  color: var(--text-creme);
  margin-bottom: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}
.about-story-text.accent { color: var(--text-muted); }

.visuals-col-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-width: 0;
}
.visuals-header { margin-bottom: 1.2rem; }
.visuals-header h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}
.visuals-header p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* Video Izgaras覺 */
.video-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
  width: 100%;
}
.video-tile-card {
  position: relative;
  height: 195px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lux);
  transition: var(--transition);
}
.video-tile-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent-light);
  box-shadow: 0 15px 35px rgba(255,142,60,0.25);
}
.video-tile-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.video-tile-card:hover img { transform: scale(1.08); filter: brightness(0.95); }
.video-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(7,7,12,0.85) 100%);
}
.play-btn-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; background: rgba(7, 7, 12, 0.75); border: 2px solid var(--accent-primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-light);
  font-size: 1.1rem; backdrop-filter: blur(4px); transition: var(--transition); z-index: 2;
}
.video-tile-card:hover .play-btn-pulse {
  background: var(--accent-primary); color: #000; transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px rgba(255, 142, 60, 0.7);
}
.video-tile-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.85rem; z-index: 3; pointer-events: none; }
.video-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-primary); display: block; margin-bottom: 0.15rem; }
.video-title-label { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: #ffffff; line-height: 1.2; }

/* BUTONLAR */
.contact-action-hub { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.primary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; width: 100%; }
.messenger-actions { display: grid; grid-template-columns: 1fr; gap: 0.85rem; width: 100%; }
.about-col-info:has(.btn-wechat-channel) .messenger-actions { grid-template-columns: 1fr 1fr; }

.btn-accent {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-gradient); color: #07070c !important; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; height: 48px;
  text-decoration: none; border-radius: 6px; border: none; cursor: pointer;
  box-shadow: 0 6px 22px rgba(255,142,60,0.3); transition: var(--transition);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,142,60,0.5); background: #ffffff; color: #000 !important; }

.btn-outline-accent {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: rgba(255,255,255,0.02); color: var(--accent-light) !important; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; height: 48px;
  text-decoration: none; border-radius: 6px; border: 1.5px solid var(--border-accent); transition: var(--transition);
}
.btn-outline-accent:hover { border-color: var(--accent-primary); background: rgba(255, 142, 60, 0.12); color: #fff !important; transform: translateY(-2px); }

.btn-whatsapp, a.btn-whatsapp {
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: 0.6rem !important; background: #25D366 !important; color: #ffffff !important; font-weight: 700 !important;
  font-size: 0.82rem !important; letter-spacing: 0.08em !important; text-transform: uppercase !important;
  height: 48px !important; padding: 0 1.2rem !important; text-decoration: none !important; border-radius: 6px !important;
  border: 1px solid #1eb954 !important; cursor: pointer !important; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
  transition: var(--transition) !important;
}
.btn-whatsapp:hover, a.btn-whatsapp:hover { background: #1eb954 !important; transform: translateY(-2px) !important; }

.btn-messenger {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  height: 48px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; cursor: pointer; border: 1.5px solid var(--border-subtle); background: var(--bg-card); color: #ffffff; transition: var(--transition);
}
.btn-messenger .msg-icon { font-size: 1.1rem; line-height: 1; }

.btn-wechat-channel {
  border-color: rgba(7, 193, 96, 0.35); background: linear-gradient(180deg, rgba(7, 193, 96, 0.12) 0%, rgba(7, 193, 96, 0.04) 100%);
}
.btn-wechat-channel:hover { border-color: #07c160; background: #07c160; color: #fff; box-shadow: 0 8px 25px rgba(7, 193, 96, 0.35); transform: translateY(-2px); }

.whatsapp-float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 20px rgba(37, 211, 102, 0.4);
  color: #fff; text-decoration: none; font-size: 1.8rem; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.whatsapp-float-btn:hover { transform: scale(1.1) translateY(-3px); background: #1eb954; }

/* MODALLAR */
.wechat-modal-overlay, .video-lightbox-modal {
  position: fixed; inset: 0; z-index: 10000; background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; cursor: pointer;
}
.wechat-modal-overlay.active, .video-lightbox-modal.active { opacity: 1; visibility: visible; }
.wechat-modal-box {
  position: relative; width: 100%; max-width: 350px; background: var(--bg-card);
  border: 1.5px solid var(--border-accent); border-radius: 12px; padding: 1.8rem 1.4rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.9); text-align: center; cursor: default;
  transform: scale(0.92); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.wechat-modal-overlay.active .wechat-modal-box { transform: scale(1); }
.wechat-modal-close, .modal-close-btn {
  position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 1.8rem;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
.wechat-modal-close:hover, .modal-close-btn:hover { color: var(--accent-primary); }

.modal-dialog-wrap {
  position: relative; width: 100%; max-width: 400px; max-height: 90vh;
  background: #000000; border: 1.5px solid var(--border-accent); border-radius: 12px;
  overflow: hidden; cursor: default; box-shadow: 0 25px 60px rgba(0,0,0,0.95); display: flex; flex-direction: column;
}
.modal-video-aspect { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; display: flex; align-items: center; justify-content: center; }
.modal-video-aspect video { width: 100%; height: 100%; object-fit: cover; border: none; }
.modal-meta-bar { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.2rem; background: var(--bg-card); border-top: 1px solid var(--border-subtle); }
.modal-video-title { font-family: var(--font-serif); font-size: 1.05rem; color: var(--accent-light); }

/* MENU */
.menu-wrapper-section { max-width: 1200px; margin: 4.5rem auto 5.5rem auto; padding: 0 1.5rem; width: 100%; }
.section-header-box { text-align: center; margin-bottom: 3.5rem; }
.section-header-box h2 { font-size: clamp(2.2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.section-header-box p { color: var(--text-muted); font-size: 0.95rem; }

.accordion-container { display: flex; flex-direction: column; gap: 1.2rem; width: 100%; }
.menu-accordion-card { background: var(--bg-card); border: 1px solid var(--border-accent); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lux); width: 100%; }
.accordion-trigger {
  width: 100%; padding: 1.5rem 2rem; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; transition: var(--transition);
}
.accordion-trigger:hover { background-color: var(--bg-card-hover); }
.accordion-trigger .category-title { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; color: var(--accent-light); letter-spacing: 0.05em; }
.accordion-trigger .icon-indicator { font-size: 1.6rem; color: var(--accent-primary); transition: transform 0.4s ease; }
.accordion-trigger.active .icon-indicator { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.45s ease-out; background: rgba(14, 13, 23, 0.95); border-top: 1px solid var(--border-subtle); }

.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; padding: 2.2rem; width: 100%; box-sizing: border-box; }
.food-item-box {
  display: flex; flex-direction: column; padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: var(--transition); width: 100%; min-width: 0;
}
.food-item-box:hover { border-bottom-color: var(--border-accent); }
.food-meta { display: flex; flex-direction: column; gap: 0.35rem; width: 100%; min-width: 0; }
.food-head { display: flex; align-items: baseline; justify-content: space-between; width: 100%; min-width: 0; gap: 0.6rem; }
.food-title-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.6rem; flex: 1; min-width: 0; }
.food-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--text-pure); letter-spacing: 0.03em; word-break: break-word; }
.food-leader { flex: 1; border-bottom: 1px dotted rgba(255, 142, 60, 0.4); height: 1px; transform: translateY(-4px); min-width: 15px; }
.food-price { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; color: var(--accent-primary); flex-shrink: 0; white-space: nowrap; margin-left: auto; }
.food-sub-row { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; width: 100%; min-width: 0; }
.food-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; font-weight: 300; flex: 1; min-width: 0; word-break: break-word; }
.food-kcal { font-size: 0.72rem; color: #777777; flex-shrink: 0; white-space: nowrap; }
.food-tag-badge { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.1rem 0.45rem; border: 1px solid var(--accent-primary); color: var(--accent-light); border-radius: 2px; white-space: nowrap; }

/* FOOTER */
footer.site-footer { border-top: 1px solid var(--border-accent); background: #040407; padding: 4rem 1.5rem 2rem 1.5rem; width: 100%; }
.footer-inner {
  max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-subtle);
}
.footer-col h4 { font-size: 1.25rem; color: var(--accent-primary); margin-bottom: 1.1rem; }
.footer-col p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.copyright-bar { text-align: center; font-size: 0.78rem; color: #666; margin-top: 2rem; }

/* GOOGLE COOKIE BANNER */
.g-cookie-card {
  position: fixed; bottom: 24px; left: 24px; max-width: 440px; width: calc(100% - 48px);
  background: #ffffff; color: #202124; border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35); z-index: 10005; display: flex; flex-direction: column; gap: 16px;
}
.g-cookie-text { font-size: 0.9rem; line-height: 1.45; color: #3c4043; margin: 0; text-align: left; }
.g-cookie-actions { display: flex; justify-content: flex-end; gap: 10px; }
.g-cookie-btn { font-size: 0.86rem; font-weight: 500; padding: 8px 18px; border-radius: 6px; cursor: pointer; border: none; }
.g-btn-reject { background-color: #f1f3f4; color: #3c4043; }
.g-btn-accept { background-color: #1a73e8; color: #ffffff; }

@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0.6rem 1rem; }
  .brand-logo-img { width: 48px; height: 48px; }
  .brand-text .logo-title { font-size: 1.25rem; }
  .hero-section { height: 100vh; height: 100dvh; min-height: 540px; padding: 75px 1.2rem 1.8rem 1.2rem; }
  .hero-emblem { width: 100px; height: 100px; }
  .hero-title { font-size: 2.1rem; }
  .hero-content .btn-accent { min-width: 180px; max-width: 230px; height: 44px; }
  .about-visuals-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-tiles-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; padding: 1.2rem 1rem; }
  .food-leader { display: none !important; }
  .g-cookie-card { left: 14px; bottom: 14px; width: calc(100% - 28px); }
}
/* HEADER ACTIONS & TOP INSTAGRAM BUTTON */
.header-actions-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.nav-instagram-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}
