/* === Domenico's On The Lake — Custom Dark Warm Italian Theme === */
/* Fonts: Playfair Display (headings), Montserrat (body) */
/* Palette: bg #1a1513, ink #f5efe8, accent #82262a (burgundy), surface #2a2220 */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #f5efe8;
  background-color: #1a1513;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === Container === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Offer Banner === */
.offer-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #82262a;
  color: #f5efe8;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.offer-banner.hidden { display: none; }
.offer-logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f5efe8;
  text-decoration: none;
  margin-right: 0.25rem;
}
.offer-text { display: flex; align-items: center; gap: 0.4rem; }
.offer-cta {
  background: #1a1513;
  color: #e8d5c4;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.offer-cta:hover { opacity: 0.85; }
.offer-banner .offer-close {
  background: none;
  border: none;
  color: rgba(245,239,232,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}

/* === Navigation === */
.nav-shell {
  position: sticky;
  top: 44px;
  z-index: 100;
  background: rgba(26, 21, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(130, 38, 42, 0.3);
  transition: top 0.3s ease;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: #82262a;
  color: #f5efe8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f5efe8;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4c8bc;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #f5efe8;
  background: rgba(130, 38, 42, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon { width: 18px; height: 18px; }
.social-inline { display: inline-flex; align-items: center; }

.btn-phone {
  background: #82262a;
  color: #f5efe8;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-phone:hover {
  background: #9a2e32;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5efe8;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 21, 19, 0.92) 0%,
    rgba(26, 21, 19, 0.7) 40%,
    rgba(26, 21, 19, 0.4) 65%,
    rgba(26, 21, 19, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: rgba(130, 38, 42, 0.85);
  color: #f5efe8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #f5efe8;
  margin-bottom: 8px;
}

.hero-sub {
  font-weight: 400;
  font-style: italic;
  color: #e8d5c4;
  display: block;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #c8b8aa;
  max-width: 560px;
  margin: 20px 0 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #82262a;
  color: #f5efe8;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-solid:hover {
  background: #9a2e32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 38, 42, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f5efe8;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid rgba(245, 239, 232, 0.3);
}

.btn-outline:hover {
  border-color: #f5efe8;
  background: rgba(245, 239, 232, 0.08);
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-light {
  background: #f5efe8;
  color: #1a1513;
  border-color: #f5efe8;
}

.btn-light:hover {
  background: #e8d5c4;
  box-shadow: 0 8px 24px rgba(245, 239, 232, 0.2);
}

/* === Heritage Bar === */
.heritage-bar {
  background: #2a2220;
  border-top: 1px solid rgba(130, 38, 42, 0.2);
  border-bottom: 1px solid rgba(130, 38, 42, 0.2);
}

.heritage-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.heritage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
}

.heritage-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e8d5c4;
  line-height: 1.1;
}

.heritage-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a09084;
}

.heritage-divider {
  width: 1px;
  height: 48px;
  background: rgba(130, 38, 42, 0.3);
}

/* === Sections === */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #221a18;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #82262a;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #f5efe8;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: #b0a094;
  line-height: 1.7;
}

/* === Features Grid (Service Cards) === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #2a2220;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(130, 38, 42, 0.12);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(130, 38, 42, 0.25);
}

.feature-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feature-card:hover .feature-img {
  transform: scale(1.05);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5efe8;
  padding: 20px 24px 8px;
}

.feature-desc {
  font-size: 0.9rem;
  color: #b0a094;
  line-height: 1.65;
  padding: 0 24px 24px;
}

/* === Brunch Feature === */
.brunch-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.brunch-img {
  border-radius: 14px;
  overflow: hidden;
}

.brunch-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.brunch-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5efe8;
  margin-bottom: 16px;
  line-height: 1.2;
}

.brunch-desc {
  font-size: 1rem;
  color: #b0a094;
  line-height: 1.7;
  margin-bottom: 16px;
}

.brunch-time {
  font-size: 0.9rem;
  font-weight: 600;
  color: #82262a;
  margin-bottom: 20px;
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  max-width: 540px;
}

.about-text {
  font-size: 1rem;
  color: #b0a094;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-badge {
  display: inline-block;
  background: #82262a;
  color: #f5efe8;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.about-image {
  border-radius: 14px;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* === Banner CTA (Catering) === */
.banner-cta {
  background: #82262a;
  padding: 56px 0;
}

.banner-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5efe8;
  margin-bottom: 8px;
}

.banner-text {
  font-size: 1rem;
  color: rgba(245, 239, 232, 0.85);
  line-height: 1.6;
}

/* === Visit / Contact === */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.visit-card {
  background: #2a2220;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(130, 38, 42, 0.1);
}

.hours-card {
  grid-column: 1 / -1;
}

.visit-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e8d5c4;
  margin-bottom: 8px;
}

.visit-value {
  font-size: 0.9rem;
  color: #b0a094;
  line-height: 1.6;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #b0a094;
}

.hours-row-special {
  font-size: 0.8rem;
  color: #8a7a6e;
  padding-left: 12px;
}

.visit-map {
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* === Footer === */
.site-footer {
  background: #15100e;
  border-top: 1px solid rgba(130, 38, 42, 0.15);
  padding: 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  background: #82262a;
  color: #f5efe8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4c8bc;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8a7a6e;
  margin-bottom: 16px;
}

.footer-sep {
  color: rgba(130, 38, 42, 0.3);
}

.footer-link {
  color: #c8b8aa;
  text-decoration: none;
}

.footer-link:hover {
  color: #f5efe8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6a5a4e;
  padding-top: 16px;
  border-top: 1px solid rgba(130, 38, 42, 0.1);
}

.footer-loccali a {
  color: #c8b8aa;
  text-decoration: none;
}

.footer-loccali a:hover {
  color: #f5efe8;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    background: rgba(26, 21, 19, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(130, 38, 42, 0.2);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .social-inline {
    display: none;
  }

  .footer-social .social-inline {
    display: inline-flex;
  }

  .btn-phone {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26, 21, 19, 0.5) 0%,
      rgba(26, 21, 19, 0.85) 100%
    );
  }

  .hero-desc {
    max-width: 100%;
  }

  .heritage-inner {
    gap: 4px;
    padding: 16px;
  }

  .heritage-item {
    padding: 6px 12px;
  }

  .heritage-num {
    font-size: 1.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .brunch-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brunch-photo {
    height: 260px;
  }

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

  .about-photo {
    height: 300px;
  }

  .banner-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-info {
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 300px;
  }

  .visit-map iframe {
    min-height: 320px;
  }

  .section {
    padding: 56px 0;
  }

  .heritage-divider:nth-child(4) {
    display: none;
  }

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

  .footer-mid {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1.3rem;
  }

  .hero-tag {
    font-size: 0.7rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-solid, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
