/* =============================================
   Liebevoll – Restaurant & Catering Website
   Design: Dark charcoal + light gray + white
   ============================================= */

/* ----- RESET & BASE ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, .logo {
  font-family: 'Goudy Bookletter 1911', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}

p { font-size: 1rem; color: #555; line-height: 1.7; }
strong { font-weight: 600; color: #1a1a1a; }

/* ----- CONTAINER ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--hero {
  background: #fff;
  color: #1a1a1a;
}
.btn--hero:hover { background: #e8e8e8; transform: translateY(-2px); }

.btn--dark {
  background: #1a1a1a;
  color: #fff;
}
.btn--dark:hover { background: #605f5f; transform: translateY(-2px); }

.btn--nav {
  background: #fff;
  color: #1a1a1a;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}
.btn--nav:hover { background: #e8e8e8; }

.btn--catering {
  background: #fff;
  color: #1a1a1a;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.btn--catering:hover { background: #e8e8e8; transform: translateY(-2px); }

/* ----- LOGO ----- */
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.logo .logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo:hover { opacity: 0.85; }

/* ----- LINK ----- */
.link {
  display: inline-block;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.link:hover { opacity: 0.6; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: #fff; }
.nav__links .btn--nav {
  color: #1a1a1a;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: #1a1a1a;
  color: #fff;
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text h1 { color: #fff; margin-bottom: 1.5rem; }
.hero__text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 540px; }

.hero__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* =============================================
   INFO SECTION
   ============================================= */
.info {
  background: #f5f5f5;
  padding: 5rem 0;
  text-align: center;
}

.info h2 { margin-bottom: 3rem; }

.info__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info__card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info__card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.info__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #1a1a1a;
}
.info__icon svg { width: 100%; height: 100%; }

.info__card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.info__card p { font-size: 0.9rem; color: #777; }
.info__card a { color: #1a1a1a; font-weight: 500; }
.info__card a:hover { opacity: 0.6; }

/* =============================================
   FEATURE SECTIONS
   ============================================= */
.feature {
  padding: 6rem 0;
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature__text .eyebrow { margin-bottom: 0.75rem; }
.feature__text h2 { margin-bottom: 1.25rem; }
.feature__text p { margin-bottom: 1.5rem; max-width: 480px; }

.feature__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature--reverse .feature__grid {
  direction: rtl;
}
.feature--reverse .feature__grid > * {
  direction: ltr;
}

/* =============================================
   CATERING SECTION
   ============================================= */
.catering {
  background: #1a1a1a;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}

.catering .eyebrow { color: rgba(255,255,255,0.5); }
.catering h2 { color: #fff; margin-bottom: 1.5rem; }

.catering__intro {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.catering__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar {
  padding: 2rem 1rem;
}

.pillar__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #fff;
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar h3 {
  color: #fff;
  font-size: 1.1rem;
}

.catering__cta {
  margin-bottom: 3rem;
}

.catering__cta h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.catering__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer__address,
.footer__contact {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.footer__contact a { color: rgba(255,255,255,0.7); }
.footer__contact a:hover { color: #fff; }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: #fff;
  color: #fff;
}
.footer__social svg { width: 18px; height: 18px; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__col li { margin-bottom: 0.6rem; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a { color: rgba(255,255,255,0.4); }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__text p { max-width: 100%; }
  .hero { padding: 120px 0 60px; min-height: auto; }

  .feature__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature__text p { max-width: 100%; }
  .feature--reverse .feature__grid { direction: ltr; }
  .feature--reverse .feature__grid > * { direction: ltr; }

  .feature__image { order: -1; }
  .feature--reverse .feature__image { order: -1; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open { display: flex; }

  .nav__toggle { display: flex; }

  .nav__links a { font-size: 1rem; }
  .btn--nav { width: 100%; }

  .info__cards { grid-template-columns: 1fr; gap: 1rem; }
  .info { padding: 3rem 0; }

  .feature { padding: 3rem 0; }
  .feature__grid { gap: 1.5rem; }

  .catering__pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .catering { padding: 3rem 0; }

  .footer__links { grid-template-columns: 1fr; }
  .footer__bottom .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .footer__grid { padding-bottom: 2rem; }
}

/* =============================================
   ACCORDION
   ============================================= */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.accordion-content.open {
  max-height: 800px;
  opacity: 1;
  margin-top: 1.25rem;
}
.accordion-content p {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.accordion-content p:last-child {
  margin-bottom: 0;
}
.accordion-trigger {
  cursor: pointer;
  user-select: none;
}
.accordion-trigger::after {
  content: " ►";
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.accordion-trigger.active::after {
  content: " ▼";
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}