/* ===== CSS Variables - Brand Colors ===== */
:root {
  --golden-yellow: #f4b840;
  --rich-black: #1a1a1a;
  --espresso: #3c2415;
  --cream: #fdf8f0;
  --latte: #e8ddd1;
  --slate: #303a4a;
  --burgundy: #931f1d;
  --golden-yellow-light: rgba(244, 184, 64, 0.15);
  --golden-yellow-dark: #d9a235;
  --slate-light: rgba(48, 58, 74, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--rich-black);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease,
    box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: var(--slate);
  border-bottom: 1px solid rgba(253, 248, 240, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 75px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--golden-yellow);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden-yellow);
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* Nav Social Icons */
.nav-social {
  display: flex;
  gap: 0.75rem;
}

.nav-social a {
  width: 36px;
  height: 36px;
  background: rgba(253, 248, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-social a:hover {
  background: var(--golden-yellow);
}

.nav-social svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
}

.nav-social a:hover svg {
  stroke: var(--slate);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(48, 58, 74, 0.85) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(48, 58, 74, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 180px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--golden-yellow);
}

.hero-tagline {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  color: var(--latte);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--golden-yellow);
  color: var(--rich-black);
}

.btn-primary:hover {
  background: var(--golden-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 184, 64, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--rich-black);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--golden-yellow);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== Section Styles ===== */
.section {
  padding: 6rem 2rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: "—";
  margin: 0 0.75rem;
  color: var(--latte);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--rich-black);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About Section ===== */
.about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--golden-yellow-light) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.about-text h3 {
  font-size: 1.75rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--rich-black);
  opacity: 0.85;
  line-height: 1.8;
}

.about-text p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  color: var(--golden-yellow);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.12);
  width: 280px;
}

.about-image-wrapper:first-child {
  transform: translateX(20px);
}

.about-image-wrapper:last-child {
  transform: translateX(-20px);
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--golden-yellow);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.about-image-wrapper:hover::before {
  opacity: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--golden-yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(244, 184, 64, 0.4);
  z-index: 2;
}

.about-badge span {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}

.about-badge small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* ===== Menu Section ===== */
.menu {
  background: linear-gradient(180deg, var(--cream) 0%, var(--latte) 100%);
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.menu-category {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(26, 26, 26, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(48, 58, 74, 0.08);
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.1);
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--latte);
}

.menu-category-icon {
  width: 50px;
  height: 50px;
  background: var(--golden-yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--burgundy);
}

.menu-category h3 {
  font-size: 1.3rem;
  color: var(--slate);
}

.size-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.size-legend span {
  background: var(--slate-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.menu-items {
  list-style: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--latte);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: 500;
  color: var(--rich-black);
  flex: 1;
}

.menu-item-prices {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.menu-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--slate);
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--golden-yellow-light);
  border-radius: 10px;
  text-align: center;
}

.menu-divider {
  margin: 1.5rem 0;
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--latte), transparent);
}

.menu-subsection-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-subsection-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-subsection-title .menu-category-icon {
  width: 40px;
  height: 40px;
}

.menu-subsection-title .menu-category-icon svg {
  width: 22px;
  height: 22px;
}

.personalize-section {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--slate), #232b38);
  color: white;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.personalize-section h3 {
  color: var(--golden-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.personalize-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.personalize-item {
  text-align: center;
}

.personalize-item span {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.personalize-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}

.personalize-flavors h4 {
  font-family: "Playfair Display", serif;
  color: var(--golden-yellow);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.personalize-flavors p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.personalize-flavors:last-child p {
  margin-bottom: 0;
}

/* ===== Reviews Section ===== */
.reviews {
  background: #ffffff;
  position: relative;
}

.reviews-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 0;
}

/* ===== Contact Section ===== */
.contact {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.1);
}

/* ===== Footer ===== */
.footer {
  background: var(--slate);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 248, 240, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--latte);
  line-height: 1.8;
  opacity: 0.8;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--latte);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(253, 248, 240, 0.1);
}

.footer-credit .heart-icon {
  color: var(--burgundy);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-credit a {
  color: var(--golden-yellow);
  transition: opacity 0.3s ease;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.footer-nav h4,
.footer-contact h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--latte);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--golden-yellow);
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--latte);
  opacity: 0.8;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--golden-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--latte);
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(253, 248, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--golden-yellow);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream);
}

.footer-social a:hover svg {
  stroke: var(--slate);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    order: -1;
    flex-direction: row;
    justify-content: center;
  }

  .about-image-wrapper {
    width: 220px;
  }

  .about-image-wrapper:first-child,
  .about-image-wrapper:last-child {
    transform: none;
  }

  .about-image-wrapper img {
    height: 180px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slate);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-social {
    display: none;
  }

  .hero-logo {
    width: 140px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

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

  .personalize-section {
    padding: 2rem 1.5rem;
  }

  .personalize-items {
    gap: 2rem;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

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

/* ===== Animations on Scroll ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
