
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --pink: #fc4ae6;
  --green: #007305;
  --orange: #ee4623;
  --yellow: #ffda24;
  --blue: #1b4ecb;
  --brown: #d0a278;
  --dark: #1a1a1a;
  --white: #ffffff;
  --gray: #5a5a5a;
  --light-bg: #f5f5f5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

/* Header */
header {
  background: var(--dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 60px; width: auto; }
.logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 3px;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
nav a:hover, nav a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
}

.social-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-header a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s;
}
.social-header a:hover { color: var(--pink); opacity: 1; }

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}
.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}
.hero-cta:hover {
  background: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
}

/* Page hero */
.page-hero {
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}
.page-hero p {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.hero-pink { background: var(--pink); }
.hero-green { background: var(--green); }
.hero-blue { background: var(--blue); }
.hero-orange { background: var(--orange); }
.hero-yellow { background: var(--yellow); }
.hero-yellow h1, .hero-yellow p { color: var(--dark); text-shadow: none; }

/* Sections */
.section { padding: 70px 0; }
.section-pink { background: var(--pink); color: var(--white); }
.section-pink h2, .section-pink h3 { color: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-green h2, .section-green h3 { color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange h2, .section-orange h3 { color: var(--white); }
.section-yellow { background: var(--yellow); }
.section-blue { background: var(--blue); color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-brown { background: var(--brown); color: var(--white); }
.section-brown h2, .section-brown h3 { color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2 { color: var(--yellow); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { line-height: 1.8; margin-bottom: 16px; }
.about-image img {
  border-radius: 4px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Menu sections */
.menu-category {
  margin-bottom: 50px;
}
.menu-category h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid currentColor;
}
.menu-category h3 {
  font-size: 1.3rem;
  margin: 20px 0 12px;
  color: inherit;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
}
.menu-item-name { font-weight: 600; font-size: 1rem; }
.menu-item-desc { font-size: 0.9rem; opacity: 0.8; margin-left: 8px; flex: 1; }
.menu-item-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  margin-left: 16px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.menu-card-body { padding: 20px; }
.menu-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.menu-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  font-weight: 700;
}

/* Ingredient grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.ingredient-card {
  padding: 20px 10px;
  transition: transform 0.3s;
}
.ingredient-card:hover { transform: translateY(-4px); }
.ingredient-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.ingredient-card span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 8px;
  border: 2px solid var(--dark);
  border-radius: 4px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--dark);
  color: var(--white);
  transition: background 0.3s;
}
.faq-q:hover { background: var(--yellow); color: var(--dark); }
.faq-q .arrow { transition: transform 0.3s; }
.faq-a {
  display: none;
  padding: 20px;
  line-height: 1.8;
  background: var(--white);
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { margin-bottom: 10px; line-height: 1.8; }
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 4px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 20px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
}
.footer-col h4 {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.footer-col p, .footer-col a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}
.footer-col a:hover { color: var(--pink); opacity: 1; }
.footer-nav a { display: block; margin-bottom: 6px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.6;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-social { display: flex; gap: 16px; margin-top: 12px; }
.footer-social a {
  font-size: 1.2rem;
  color: var(--white);
}
.footer-social a:hover { color: var(--pink); }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  nav.active { display: flex; }
  .social-header { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero { min-height: 400px; height: 50vh; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 2rem; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
