/* ========================= styles.css ========================= */
/* Save this as styles.css */

:root {
  --bg: #fbf8f4;
  --dark: #2b2623;
  --accent: #c28b5a;
  /* warm caramel */
  --muted: #6b6663;
  --glass: rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  backdrop-filter: blur(6px);
  z-index: 100
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark)
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px
}

.nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(44, 38, 34, 0.75), rgba(186, 150, 117, 0.15));
  mix-blend-mode: multiply
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 56px;
  margin: 0
}

.hero-sub {
  color: #fff;
  margin: 8px 0 18px;
  font-size: 20px
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform .25s ease
}

.cta:hover {
  transform: translateY(-4px)
}

.hero-art {
  margin-top: 22px
}

.hero-art img {
  width: 260px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite
}

@keyframes float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  opacity: .9
}

/* Sections */
.section {
  padding: 72px 0
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.about-media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12)
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin: 0 0 12px
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 14px
}

.features {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: flex;
  gap: 12px
}

.features li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 600
}

.btn {
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600
}

/* Services */
.services .partners {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
  flex-wrap: wrap;
}

.services img {
  margin-top: 24px;
  width: 160px;
  max-width: 32%;
  height: auto;
}

/* Highlight */
.highlight-inner {
  display: flex;
  gap: 28px;
  align-items: center
}

.highlight-media img {
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15)
}

.highlight-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-top: 0
}

/* Footer */
.site-footer {
  background: #231f1d;
  color: #d6cfc9;
  padding: 28px 0
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.socials a {
  text-decoration: none;
  color: #d6cfc9;
  margin-left: 14px
}

/* Animations & reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all .7s cubic-bezier(.2, .9, .2, 1)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all .7s cubic-bezier(.2, .9, .2, 1)
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all .7s cubic-bezier(.2, .9, .2, 1)
}

.revealed {
  opacity: 1;
  transform: none
}

/* Menu Section */
.menu {
  padding: 60px 20px;
  background: #fefcf9;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item h3 {
  font-size: 1.3rem;
  margin: 15px;
  color: #3e2c23;
}

.menu-item p {
  margin: 0 15px 20px;
  color: #555;
  font-size: 0.95rem;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.mt-32 {
  margin-top: 32px;
}

/* Responsive */
@media(max-width:900px) {
  .grid {
    grid-template-columns: 1fr
  }

  .highlight-inner {
    flex-direction: column
  }

  .highlight-media img {
    width: 100%
  }

  .hero-art img {
    width: 200px
  }
}

@media(max-width:720px) {
  .nav ul {
    display: none
  }

  .nav-toggle {
    display: block
  }
}

/* Small screens & portrait friendly spacing */
@media (max-width:480px) {
  .hero {
    min-height: 58vh;
    padding-top: 40px
  }

  .hero-title {
    font-size: 40px
  }

  .hero-art img {
    width: 180px
  }

  .container {
    padding: 0 14px
  }
}