/* ===== VARIABLES ===== */
:root {
  --yellow: #e8d34c;
  --pink: #cf2c70;
  --blue: #38bdd8;
  --white: #ffffff;
  --dark: #1a1a1a;
  --off-white: #faf9f6;
  --yellow-light: #fdf8e1;
  --pink-light: #fce4ee;
  --blue-light: #e0f4f9;
  --font-title: 'Baloo 2', cursive, sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-logo img {
  height: 60px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.navbar.scrolled .nav-links a {
  color: var(--white);
}

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

.nav-insta {
  display: flex;
  align-items: center;
}

.nav-insta svg {
  transition: color 0.2s;
}

.nav-insta:hover svg {
  color: var(--pink) !important;
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.navbar.scrolled .nav-toggle span {
  background: var(--white);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}

.hero-logo {
  max-width: 480px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-tagline {
  text-align: center;
}

.tagline-top {
  display: block;
  font-family: 'Phosphate-Solid', 'Phosphate', 'Impact', 'Arial Black', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.tagline-bottom {
  display: block;
  font-family: 'Phosphate-Solid', 'Phosphate', 'Impact', 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  -webkit-text-stroke: 5px var(--yellow);
  paint-order: stroke fill;
}

/* ===== PHOTO GALLERY ===== */
.gallery-section {
  background: var(--blue);
  padding: 0 24px 20px;
}

.gallery-frames {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.photo-frame {
  flex: 1;
  max-width: 320px;
}

.photo-frame {
  background: var(--pink);
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-1deg);
}

.photo-frame:nth-child(2) {
  transform: rotate(1.5deg);
}

.photo-frame:nth-child(3) {
  transform: rotate(-0.5deg);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .gallery-frames {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .photo-frame {
    max-width: 85%;
  }
}

/* ===== SECTIONS COMMON ===== */
.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark);
}

/* ===== MENU ===== */
.menu-section {
  background: var(--blue);
  padding: 40px 24px 0;
  position: relative;
  overflow: hidden;
}

.menu-section .section-title {
  color: var(--white);
}

.menu-masonry {
  max-width: 1100px;
  margin: 0 auto;
  columns: 3;
  column-gap: 20px;
}

.menu-card {
  break-inside: avoid;
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
}

.menu-card--yellow {
  background: var(--yellow);
}

.menu-card--pink {
  background: var(--pink);
}

.menu-card h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}

.menu-card-divider {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.menu-sub {
  margin-bottom: 14px;
}

.menu-sub h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}

.menu-note {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 3px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.menu-item span:last-child {
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
}

.menu-item.highlight {
  color: var(--yellow);
}

/* Decorative masks */
.deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
}

.deco-mask-1 {
  width: 200px;
  top: 80px;
  right: 20px;
  transform: rotate(12deg);
}

.deco-mask-2 {
  width: 180px;
  bottom: 100px;
  left: 20px;
  transform: rotate(-8deg);
}

.deco-mask-3 {
  width: 160px;
  bottom: 40px;
  right: 40px;
  transform: rotate(10deg);
}

/* ===== HOURS ===== */
.hours-section {
  background: var(--blue);
  padding: 40px 24px;
  color: var(--white);
}

.hours-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hours-content {
  flex: 1;
}

.hours-section .section-title {
  color: var(--white);
  text-align: left;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.hours-block {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.hours-block h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hours-block p {
  font-size: 1.3rem;
  font-weight: 700;
}

.location-info {
  text-align: left;
}

.location-address {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.location-directions {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
  font-style: italic;
}

.hours-deco {
  flex-shrink: 0;
}

.hours-deco img {
  width: 260px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== OUR STORY ===== */
.story-section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-photo {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.story-content {
  flex: 1;
}

.story-content .section-title {
  text-align: left;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  filter: brightness(1.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--pink);
}

.footer-address {
  font-size: 0.9rem;
  color: #999;
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .menu-masonry {
    columns: 2;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .hours-section .section-title {
    text-align: center;
  }

  .location-info {
    text-align: center;
  }

  .story-inner {
    flex-direction: column;
  }

  .story-content .section-title {
    text-align: center;
  }

  .story-photo {
    width: 100%;
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.3s ease;
    backdrop-filter: blur(10px);
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .menu-masonry {
    columns: 1;
  }

  .hero-logo {
    max-width: 280px;
  }

  .tagline-top {
    font-size: 1.4rem;
  }

  .tagline-bottom {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .hours-deco img {
    width: 180px;
  }
}
