/* Platform links styled like Instagram icon (icon-only) */
.platform-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px; /* match Instagram icon padding */
  margin: 0; /* let container gap handle spacing */
  text-decoration: none;
  color: inherit; /* match Instagram link color */
  background: transparent;
}

.platform-badge i {
  font-size: 1.1rem;
  line-height: 1;
}
/* Base size for all inline SVG icons (Instagram + platform badges) */
.brand-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.platform-badge .brand-icon {
  display: block;
}

/* Hide text label to keep icon-only style */
.platform-badge span {
  display: none;
}

.platform-label {
  display: none;
  margin-left: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Reduce overall nav gap slightly so icons sit tighter */
.nav-links {
  gap: 14px;
}

/* Make platform icons adopt the same hover color behavior as Instagram */
.platform-badge:hover {
  color: var(--red);
}

/* Ensure Instagram inline SVG is visible */
.nav-links a[aria-label="Instagram"] {
  color: var(--dark);
  display: inline-flex;
  align-items: center;
}
.nav-links a[aria-label="Instagram"] .brand-icon {
  width: 20px;
  height: 20px;
  opacity: 1;
  display: block;
}
.social-icons a[aria-label="Instagram"] .brand-icon {
  width: 22px;
  height: 22px;
  opacity: 1;
  display: inline-block;
}

/* Re-enable underline (::after) for Instagram icon in header */
.nav-links a[aria-label="Instagram"]::after {
  display: block;
}
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Palette */
:root {
  --yellow: #fcdd09;
  --red: #da121a;
  --terracotta: #ebb337;
  --blue: #296e73;
  --cream: #f7f1e3;
  --dark: #333333;
  --light: #ffffff;

  /* Legacy mappings for existing styles */
  --primary-red: var(--red);
  --primary-green: var(--blue);
  --accent-gold: var(--terracotta);
  --warm-cream: var(--cream);
  --deep-burgundy: var(--red);
  --olive-green: var(--blue);
  --ivory: var(--cream);
  --charcoal: var(--dark);
  --warm-white: var(--light);
  --shadow-gold: rgba(235, 179, 55, 0.15);
}

body {
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--warm-cream);
}

/* Navigation styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 60px;
  transition: all 0.4s ease;
}

/* Scrolled state - elegant background appears on scroll */
.navbar.scrolled {
  background: rgba(247, 241, 227, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 30px;
}

/* Brand Logo */
.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-brand a:hover {
  transform: scale(1.02);
}

.font-la {
  font-family: "Alex Brush", cursive;
  color: var(--blue);
  font-size: 1.8rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-right: 4px;
}

.font-scacciata {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu Button (hidden on desktop) */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--terracotta));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: var(--dark);
}

.language-toggle .current-language-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.language-toggle:hover {
  border-color: var(--red);
  background: rgba(218, 18, 26, 0.05);
}

.language-toggle .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.language-selector.active .language-toggle .arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
  color: var(--dark);
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(218, 18, 26, 0.05);
  color: var(--red);
}

.language-option.active {
  background: rgba(218, 18, 26, 0.1);
  color: var(--red);
  font-weight: 600;
}

.language-option .flag {
  font-size: 1.4rem;
  line-height: 1;
}

.language-option .lang-name {
  flex: 1;
}

/* Footer styles */
.footer {
  background: linear-gradient(135deg, #fff8e1 0%, #f5f0e8 50%, #ede7d9 100%);
  color: var(--charcoal);
  padding: 60px 30px 30px;
  font-family: "Playfair Display", serif;
  box-shadow: 0 -5px 20px var(--shadow-gold);
  border-top: 3px solid var(--accent-gold);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 300px;
  text-align: left;
}

.footer-brand h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.8rem;
  color: var(--primary-red);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-brand p {
  font-size: 1rem;
  color: var(--charcoal);
  max-width: 400px;
  line-height: 1.6;
  background: none;
}

.footer-brand p em {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--red);
  font-style: italic;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.footer-brand p small {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  opacity: 0.9;
  font-family: "Playfair Display", serif;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 5px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  color: var(--primary-red);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--accent-gold);
  transform: scale(1.3) translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 2 1 600px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-links div {
  min-width: 180px;
}

.footer-links h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-green);
  font-weight: 600;
  position: relative;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
  border-radius: 1px;
}

.footer-links p,
.footer-links a {
  color: var(--charcoal);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
  background: none;
}

.footer-links a:hover {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-top: 2px solid var(--accent-gold);
  padding-top: 20px;
  background: transparent;
}

/* Utility classes */
.text-center {
  text-align: center;
}

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

/* Responsive design */
@media (max-width: 1024px) {
  .navbar {
    max-width: 100%;
    margin: 0;
    padding: 15px 20px;
    min-height: 55px;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .font-la,
  .font-scacciata {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .language-toggle {
    padding: 6px 10px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    min-height: auto;
  }

  .navbar.scrolled {
    padding: 12px 20px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(247, 241, 227, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .platform-badge {
    justify-content: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  }

  .nav-links .platform-badge span {
    display: inline;
    margin-left: 10px;
  }

  .nav-links .platform-label {
    display: inline;
  }

  .language-selector {
    margin-top: 10px;
    width: 100%;
  }

  .language-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .font-la,
  .font-scacciata {
    font-size: 1.5rem;
  }

  .language-toggle {
    padding: 6px 8px;
    font-size: 1rem;
    gap: 4px;
  }

  .language-toggle .current-language-name {
    font-size: 0.9rem;
  }

  .language-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .language-selector.active .language-dropdown {
    transform: translateX(-50%) translateY(0);
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
  }

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

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .font-la,
  .font-scacciata {
    font-size: 1.3rem;
  }

  .nav-links {
    width: 100%;
    padding: 70px 15px 15px;
  }

  .nav-links a {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .footer-links {
    gap: 30px;
  }
}

/* Minimalist contact styles for About page contact block */
.contact-info.minimalist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  color: var(--charcoal);
}

.contact-info.minimalist .contact-line {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info.minimalist .contact-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease;
}

.contact-info.minimalist .contact-link:hover {
  color: var(--red);
}

.contact-info.minimalist .sep {
  color: rgba(0, 0, 0, 0.35);
  margin: 0 6px;
}

.contact-info.minimalist .hours-text {
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.9);
}

/* Small helper for accessible headings that should be visually hidden */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .contact-info.minimalist {
    align-items: flex-start;
  }
}

/* Contact layout: map larger on left, info on right */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container {
  width: 100%;
}

.about-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.08);
}

.contact-info.minimalist.right-align {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-info.minimalist.right-align .contact-line {
  justify-content: center;
  text-align: center;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 900px;
  }

  .about-map {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .contact-layout {
    display: block;
  }

  .map-container {
    margin-bottom: 18px;
  }

  .about-map {
    min-height: 360px;
  }

  .contact-info.minimalist.right-align,
  .contact-info.minimalist {
    align-items: flex-start;
    text-align: left;
  }
}

/* Contact bullets styling */
.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--primary-green);
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}

.contact-bullets {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-bullets li {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--charcoal);
  position: relative;
  padding-left: 0;
  text-align: center;
}

.contact-bullets li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--terracotta));
  border-radius: 50%;
  margin-right: 8px;
}

.contact-bullets a.contact-link,
.contact-bullets a.address-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-bullets a.contact-link:hover,
.contact-bullets a.address-link:hover {
  color: var(--red);
}

@media (max-width: 680px) {
  .contact-bullets li {
    padding-left: 12px;
  }
  .contact-bullets li::before {
    left: -2px;
    top: 0.6rem;
  }
}

/* Hours block inside contact bullets */
.contact-bullets .no-marker {
  padding-left: 0;
}

.contact-bullets .no-marker::before {
  display: none;
}

.contact-subheading {
  font-size: 1rem;
  color: var(--primary-green);
  margin: 8px 0 10px 0;
  text-align: center;
}

.right-align .hours-list {
  gap: 8px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.right-align .hours-item {
  background: #f8f8f8;
  padding: 8px 10px;
}

.right-align .hours-item.weekend {
  background: linear-gradient(135deg, var(--red), var(--terracotta));
  color: #fff;
}

.right-align .hours-item .day {
  color: var(--dark-green);
}

.right-align .hours-item.weekend .day,
.right-align .hours-item.weekend .time {
  color: #fff;
}