/* Custom Header Styles */
:root {
  --header-bg-fc2fef0e: #ffffff;
  --header-color-fc2fef0e: #333333;
  --header-accent-fc2fef0e: #e4a853; /* Elegant Gold for Tastings Caterers */
  --header-height-fc2fef0e: 80px;
}

/* Base header styles */
.tastings-site-header-fc2fef0e {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-fc2fef0e);
  background-color: var(--header-bg-fc2fef0e);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  transition: all 0.3s ease;
}

/* Adjust for Admin Bar */
body.admin-bar .tastings-site-header-fc2fef0e {
  top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .tastings-site-header-fc2fef0e {
    top: 46px;
  }
}

.tastings-header-container-fc2fef0e {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo styling */
.tastings-logo-link-fc2fef0e {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.tastings-logo-img-fc2fef0e {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

.tastings-logo-text-fc2fef0e {
  font-size: 24px;
  font-weight: 700;
  color: var(--header-color-fc2fef0e);
  letter-spacing: 0.5px;
}

/* Desktop Navigation */
.tastings-desktop-nav-fc2fef0e {
  display: flex;
  align-items: center;
}

.tastings-nav-list-fc2fef0e {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.tastings-nav-link-fc2fef0e {
  text-decoration: none;
  color: var(--header-color-fc2fef0e);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
}

.tastings-nav-link-fc2fef0e::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--header-accent-fc2fef0e);
  transition: width 0.2s ease;
}

.tastings-nav-link-fc2fef0e:hover {
  color: var(--header-accent-fc2fef0e);
}

.tastings-nav-link-fc2fef0e:hover::after {
  width: 100%;
}

/* Menu Toggle Button */
.tastings-menu-toggle-fc2fef0e {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}

.tastings-toggle-bar-fc2fef0e {
  width: 100%;
  height: 2px;
  background-color: var(--header-color-fc2fef0e);
  transition: all 0.3s ease;
}

/* Mobile Overlay Menu */
.tastings-mobile-overlay-fc2fef0e {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Open Mobile Menu State */
.tastings-site-header-fc2fef0e.is-open-fc2fef0e .tastings-mobile-overlay-fc2fef0e {
  opacity: 1;
  pointer-events: auto;
}

.tastings-site-header-fc2fef0e.is-open-fc2fef0e .tastings-toggle-bar-fc2fef0e:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.tastings-site-header-fc2fef0e.is-open-fc2fef0e .tastings-toggle-bar-fc2fef0e:nth-child(2) {
  opacity: 0;
}

.tastings-site-header-fc2fef0e.is-open-fc2fef0e .tastings-toggle-bar-fc2fef0e:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.tastings-mobile-list-fc2fef0e {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.tastings-mobile-item-fc2fef0e {
  margin: 25px 0;
}

.tastings-mobile-link-fc2fef0e {
  font-size: 22px;
  text-decoration: none;
  color: var(--header-color-fc2fef0e);
  font-weight: 600;
  transition: color 0.2s ease;
}

.tastings-mobile-link-fc2fef0e:hover {
  color: var(--header-accent-fc2fef0e);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .tastings-desktop-nav-fc2fef0e {
    display: none;
  }
  
  .tastings-menu-toggle-fc2fef0e {
    display: flex;
  }
}
