/* ================================================
   TRATTORIA BELLA VITA — Custom Styles
   Authentic Italian Restaurant Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --tbv-burgundy: #8E2839;
  --tbv-burgundy-dark: #6B1D2B;
  --tbv-terracotta: #B66C48;
  --tbv-terracotta-light: #C88B6B;
  --tbv-olive: #505B40;
  --tbv-sage: #9BA187;
  --tbv-gold: #F4A261;
  --tbv-gold-light: #F7BD8A;
  --tbv-cream: #FFF8F2;
  --tbv-linen: #F5F0EB;
  --tbv-warm-white: #FDFAF6;
  --tbv-espresso: #221814;
  --tbv-charcoal: #2A2118;
  --tbv-font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --tbv-font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- RESET / BASE ---- */

body,
.et_pb_post,
#main-content {
  font-family: var(--tbv-font-body) !important;
  color: var(--tbv-charcoal);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--tbv-warm-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tbv-font-heading) !important;
  color: var(--tbv-espresso);
  line-height: 1.2;
}

a {
  color: var(--tbv-burgundy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--tbv-terracotta);
}

/* ---- HIDE DIVI DEFAULT ELEMENTS ---- */

/* Built by Christos Ferlachidis & Daniel Hedenberg */

.et_pb_section.et_pb_fullwidth_section + .et_pb_section,
#main-header,
#top-header {
  /* Let Divi header show by default */
}

.entry-title {
  display: none !important;
}

/* ---- NAVIGATION ---- */

#main-header {
  background-color: rgba(34, 24, 20, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

#main-header .et_nav_text_color_light #et-top-navigation nav > ul > li > a,
#et-top-navigation nav > ul > li > a {
  font-family: var(--tbv-font-body) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  color: var(--tbv-cream) !important;
}

#et-top-navigation nav > ul > li > a:hover {
  color: var(--tbv-gold) !important;
}

.logo_container img,
#logo {
  max-height: 60px !important;
}

/* ---- HERO SECTIONS ---- */

.tbv-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbv-page-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbv-page-hero-short {
  height: 45vh;
  min-height: 300px;
}

.tbv-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(34, 24, 20, 0.4) 0%,
    rgba(34, 24, 20, 0.6) 50%,
    rgba(34, 24, 20, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbv-hero-content {
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.tbv-hero-subtitle {
  font-family: var(--tbv-font-heading) !important;
  font-style: italic;
  color: var(--tbv-gold);
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.tbv-hero-title {
  font-family: var(--tbv-font-heading) !important;
  color: #fff !important;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.tbv-hero-tagline {
  font-family: var(--tbv-font-heading) !important;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ---- BUTTONS ---- */

.tbv-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--tbv-font-body) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.tbv-btn-primary {
  background-color: var(--tbv-burgundy);
  color: #fff !important;
  border: 2px solid var(--tbv-burgundy);
}

.tbv-btn-primary:hover {
  background-color: var(--tbv-burgundy-dark);
  border-color: var(--tbv-burgundy-dark);
  color: #fff !important;
}

.tbv-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.7);
}

.tbv-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff !important;
}

.tbv-btn-outline-light {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.5);
}

.tbv-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--tbv-gold);
  color: var(--tbv-gold) !important;
}

.tbv-btn-gold {
  background-color: var(--tbv-gold);
  color: var(--tbv-espresso) !important;
  border: 2px solid var(--tbv-gold);
  font-weight: 700;
}

.tbv-btn-gold:hover {
  background-color: var(--tbv-gold-light);
  border-color: var(--tbv-gold-light);
  color: var(--tbv-espresso) !important;
}

.tbv-btn-full {
  width: 100%;
  text-align: center;
}

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

/* ---- SECTIONS ---- */

.tbv-section {
  padding: 80px 0;
}

.tbv-section-cream {
  background-color: var(--tbv-cream);
}

.tbv-section-white {
  background-color: var(--tbv-warm-white);
}

.tbv-section-dark {
  position: relative;
  background-color: var(--tbv-espresso);
}

.tbv-section-burgundy {
  background-color: var(--tbv-burgundy);
  padding: 60px 0;
}

.tbv-dark-overlay {
  background: rgba(34, 24, 20, 0.75);
  padding: 80px 0;
  width: 100%;
}

.tbv-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.tbv-text-center {
  text-align: center;
}

.tbv-text-left {
  text-align: left !important;
}

.tbv-text-white {
  color: #fff !important;
}

.tbv-text-muted {
  color: rgba(255,255,255,0.6) !important;
  font-style: italic;
}

/* ---- TYPOGRAPHY ---- */

.tbv-section-title {
  font-family: var(--tbv-font-heading) !important;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.tbv-section-subtitle {
  font-family: var(--tbv-font-heading) !important;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  color: var(--tbv-terracotta);
  margin-bottom: 20px;
}

.tbv-ornament {
  font-size: 14px;
  color: var(--tbv-gold);
  letter-spacing: 8px;
}

.tbv-ornament-line {
  width: 60px;
  height: 2px;
  background: var(--tbv-gold);
  margin: 15px auto 30px;
}

.tbv-ornament-line.tbv-left {
  margin-left: 0;
}

.tbv-ornament-line.tbv-center {
  margin-left: auto;
  margin-right: auto;
}

.tbv-ornament-line.tbv-gold-line {
  background: var(--tbv-gold);
}

.tbv-small-text {
  font-size: 14px;
  color: #777;
}

/* ---- WELCOME STRIP ---- */

.tbv-welcome-strip {
  background-color: var(--tbv-espresso);
  padding: 35px 0;
  text-align: center;
}

.tbv-welcome-text {
  font-family: var(--tbv-font-heading) !important;
  font-size: 20px;
  color: var(--tbv-cream);
  letter-spacing: 1px;
  margin: 10px 0;
}

/* ---- FEATURED DISHES ---- */

.tbv-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.tbv-featured-card {
  background: var(--tbv-warm-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tbv-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tbv-featured-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.tbv-featured-info {
  padding: 20px;
}

.tbv-featured-info h3 {
  font-family: var(--tbv-font-heading) !important;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.tbv-featured-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tbv-price {
  font-family: var(--tbv-font-heading) !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--tbv-burgundy);
}

/* ---- TWO COLUMN LAYOUT ---- */

.tbv-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tbv-col-text {
  padding: 20px 0;
}

.tbv-col-text p {
  margin-bottom: 15px;
}

.tbv-rounded-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.tbv-shadow {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ---- STORY / ABOUT ---- */

.tbv-story-text {
  font-family: var(--tbv-font-heading) !important;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

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

.tbv-philosophy-item {
  text-align: center;
}

.tbv-philosophy-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.tbv-philosophy-item h3 {
  font-family: var(--tbv-font-heading) !important;
  font-size: 24px;
  margin-bottom: 12px;
}

.tbv-philosophy-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ---- LUNCH PRICES ---- */

.tbv-lunch-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.tbv-lunch-label {
  font-family: var(--tbv-font-heading) !important;
  font-size: 18px;
  font-weight: 500;
}

.tbv-lunch-amount {
  font-family: var(--tbv-font-heading) !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--tbv-burgundy);
}

/* ---- MENU STYLES ---- */

.tbv-menu-container {
  max-width: 800px;
}

.tbv-menu-category-title {
  font-family: var(--tbv-font-heading) !important;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.tbv-menu-category-desc {
  font-family: var(--tbv-font-heading) !important;
  font-style: italic;
  font-size: 18px;
  text-align: center;
  color: var(--tbv-terracotta);
  margin-bottom: 15px;
}

.tbv-menu-items {
  margin-top: 30px;
}

.tbv-menu-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tbv-menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tbv-menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tbv-menu-item-header h3 {
  font-family: var(--tbv-font-heading) !important;
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}

.tbv-menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.2);
  margin: 0 8px;
  min-width: 30px;
  position: relative;
  top: -5px;
}

.tbv-menu-item-header .tbv-price {
  white-space: nowrap;
  font-size: 18px;
}

.tbv-menu-desc {
  font-size: 15px;
  color: #777;
  font-style: italic;
  margin-top: 5px;
  line-height: 1.5;
}

.tbv-menu-item-dark .tbv-menu-item-header h3 {
  color: #fff !important;
}

.tbv-menu-item-dark .tbv-price {
  color: var(--tbv-gold) !important;
}

.tbv-menu-item-dark .tbv-menu-dots {
  border-bottom-color: rgba(255,255,255,0.2);
}

.tbv-menu-item-dark {
  border-bottom-color: rgba(255,255,255,0.1) !important;
}

/* ---- DRINKS ---- */

.tbv-drink-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

.tbv-drink-heading {
  font-family: var(--tbv-font-heading) !important;
  font-size: 24px;
  color: var(--tbv-gold) !important;
  margin-bottom: 15px;
  text-align: center;
}

.tbv-drink-extras {
  margin-top: 40px;
  text-align: center;
}

.tbv-drink-extras p {
  font-size: 15px;
  line-height: 2;
}

/* ---- HOURS TABLE ---- */

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

.tbv-hours-table td {
  padding: 8px 0;
  font-size: 16px;
}

.tbv-hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--tbv-espresso);
}

.tbv-hours-sub td {
  padding: 4px 0;
  font-size: 15px;
}

.tbv-contact-heading {
  font-family: var(--tbv-font-heading) !important;
  font-size: 24px;
  margin-bottom: 10px;
}

/* ---- BOOKING FORM ---- */

.tbv-booking-form-wrapper {
  background: var(--tbv-warm-white);
  padding: 35px;
  border-radius: 4px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.tbv-booking-form .tbv-form-group {
  margin-bottom: 18px;
}

.tbv-booking-form label {
  display: block;
  font-family: var(--tbv-font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tbv-espresso);
  margin-bottom: 6px;
}

.tbv-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #999;
}

.tbv-booking-form input,
.tbv-booking-form select,
.tbv-booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--tbv-font-body);
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  color: var(--tbv-charcoal);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.tbv-booking-form input:focus,
.tbv-booking-form select:focus,
.tbv-booking-form textarea:focus {
  outline: none;
  border-color: var(--tbv-burgundy);
}

.tbv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tbv-booking-info-box {
  background: var(--tbv-linen);
  padding: 20px 25px;
  border-radius: 4px;
  margin-top: 25px;
  border-left: 3px solid var(--tbv-gold);
}

.tbv-booking-info-box h3 {
  font-family: var(--tbv-font-heading) !important;
  font-size: 20px;
  margin-bottom: 10px;
}

.tbv-booking-info-box ul {
  padding-left: 20px;
  margin: 0;
}

.tbv-booking-info-box li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.5;
}

/* ---- CONTACT ---- */

.tbv-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.tbv-contact-card {
  padding: 30px 20px;
  text-align: center;
}

.tbv-contact-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.tbv-contact-card h3 {
  font-family: var(--tbv-font-heading) !important;
  font-size: 22px;
  margin-bottom: 8px;
}

.tbv-contact-details {
  margin-top: 20px;
}

.tbv-contact-detail-item {
  margin-bottom: 20px;
}

.tbv-contact-detail-item strong {
  font-family: var(--tbv-font-heading) !important;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
  color: var(--tbv-burgundy);
}

.tbv-social-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.tbv-social-link {
  font-family: var(--tbv-font-body) !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px solid var(--tbv-burgundy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.tbv-social-link:hover {
  background-color: var(--tbv-burgundy);
  color: #fff !important;
}

/* ---- GALLERY ---- */

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

.tbv-gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.tbv-gallery-item.tbv-gallery-wide {
  grid-column: span 2;
}

.tbv-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.tbv-gallery-item:hover img {
  transform: scale(1.05);
}

/* ---- FOOTER OVERRIDE ---- */

#main-footer {
  background-color: var(--tbv-espresso) !important;
}

#footer-widgets .footer-widget {
  color: var(--tbv-cream) !important;
}

#footer-bottom {
  background-color: rgba(0,0,0,0.2) !important;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .tbv-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tbv-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .tbv-hero-title {
    font-size: 42px;
  }
  .tbv-hero-subtitle {
    font-size: 18px;
  }
  .tbv-hero-tagline {
    font-size: 17px;
  }
  .tbv-section {
    padding: 50px 0;
  }
  .tbv-section-title,
  .tbv-menu-category-title {
    font-size: 32px;
  }
  .tbv-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tbv-featured-grid {
    grid-template-columns: 1fr;
  }
  .tbv-featured-img {
    height: 200px;
  }
  .tbv-drink-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tbv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tbv-gallery-item.tbv-gallery-wide {
    grid-column: span 2;
  }
  .tbv-contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .tbv-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tbv-hero {
    background-attachment: scroll;
  }
  .tbv-page-hero {
    height: 40vh;
    min-height: 250px;
  }
  .tbv-social-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .tbv-hero-title {
    font-size: 32px;
  }
  .tbv-container {
    padding: 0 20px;
  }
  .tbv-gallery-grid {
    grid-template-columns: 1fr;
  }
  .tbv-gallery-item.tbv-gallery-wide {
    grid-column: span 1;
  }
  .tbv-booking-form-wrapper {
    padding: 25px 20px;
  }
  .tbv-menu-item-header h3 {
    font-size: 18px;
  }
}

/* ---- SMOOTH SCROLLING ---- */
html {
  scroll-behavior: smooth;
}

/* ---- DIVI FULL-WIDTH OVERRIDES ---- */

/* Remove all Divi width constraints */
body.page-template-page-template-blank-php #main-content .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

body.page-template-page-template-blank-php #main-content .container:before {
  display: none !important;
}

body.page-template-page-template-blank-php #content-area {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

body.page-template-page-template-blank-php #left-area {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  float: none !important;
}

body.page-template-page-template-blank-php #sidebar {
  display: none !important;
}

body.page-template-page-template-blank-php .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

body.page-template-page-template-blank-php .main_title {
  display: none !important;
}

body.page-template-page-template-blank-php article.page {
  padding: 0 !important;
  margin: 0 !important;
}

.et_pb_section {
  padding: 0 !important;
}

.et_pb_row {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.et_pb_text_inner {
  max-width: 100% !important;
}

.et_pb_module {
  margin-bottom: 0 !important;
}

#page-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body:not(.et-tb) #main-content .container {
  padding-top: 0 !important;
}

/* ---- CUSTOM STICKY NAVIGATION ---- */

.tbv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(34, 24, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.tbv-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
}

.tbv-nav-logo {
  font-family: var(--tbv-font-heading) !important;
  font-size: 24px;
  font-weight: 600;
  color: var(--tbv-cream) !important;
  text-decoration: none !important;
  letter-spacing: 1px;
  white-space: nowrap;
}

.tbv-nav-logo:hover {
  color: var(--tbv-gold) !important;
}

.tbv-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tbv-nav-links li {
  list-style: none !important;
}

.tbv-nav-links a {
  font-family: var(--tbv-font-body) !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,248,242,0.8) !important;
  text-decoration: none !important;
  padding: 8px 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.tbv-nav-links a:hover {
  color: var(--tbv-gold) !important;
}

.tbv-nav-links .tbv-nav-cta a {
  background: var(--tbv-burgundy);
  color: #fff !important;
  border-radius: 2px;
  padding: 10px 20px;
}

.tbv-nav-links .tbv-nav-cta a:hover {
  background: var(--tbv-burgundy-dark);
}

/* Mobile hamburger */
.tbv-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.tbv-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tbv-cream);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Offset content for fixed nav */
body.page-template-page-template-blank-php {
  padding-top: 0 !important;
}

/* Hide Divi's default header completely */
#main-header,
#top-header,
.et-fixed-header {
  display: none !important;
}

@media (max-width: 768px) {
  .tbv-nav-toggle {
    display: block;
  }

  .tbv-nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(34, 24, 20, 0.98);
    flex-direction: column;
    padding: 20px 0 !important;
    gap: 0;
  }

  .tbv-nav-links.tbv-nav-open {
    display: flex;
  }

  .tbv-nav-links a {
    padding: 14px 30px !important;
    display: block;
    font-size: 13px;
  }

  .tbv-nav-links .tbv-nav-cta a {
    margin: 10px 30px;
    text-align: center;
    display: block;
  }
}