@import url("https://fonts.googleapis.com/css2?family=Yellowtail&display=swap");

:root {
  --white: #ffffff;
  --bg-light: #fff9f0;
  --thai-gold: #d4a017;
  --thai-gold-light: #f5e1a4;
  --thai-gold-dark: #b8860b;
  --thai-red: #b13e3e;
  --text-dark: #333333;
  --thai-orange: #d4a017;
  --whatsapp-green: #25d366;
  --bg-gradient: linear-gradient(145deg, #fff9e6 0%, #fff0d4 100%);
  --card-shadow: 0 15px 35px rgba(180, 120, 30, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: var(--bg-gradient);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L38 30 L42 45 L30 35 L18 45 L22 30 L10 20 L25 20 Z' fill='%23d4a017' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(212, 160, 23, 0.15);
  border-bottom: 2px solid var(--thai-gold-light);
}

/* NIEUW: Lettertype zoals logo */
.logo {
  display: flex;
  align-items: center;
  font-family: "Yellowtail", cursive;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--text-dark);
}

.logo img {
  height: 50px;
  margin-right: 10px;
  transition: transform 0.3s;
  border-radius: 5px;
  border: 2px solid var(--thai-gold-light);
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.logo span {
  font-family: "Yellowtail", cursive;
  color: var(--thai-gold);
  margin-left: 5px;
  text-shadow: 0 2px 5px rgba(212, 160, 23, 0.2);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--thai-gold-dark);
  font-weight: 800;
  margin-left: 20px;
  transition: 0.3s;
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--thai-gold);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--thai-gold);
}

nav ul li a:hover::after {
  width: 100%;
}

header {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--thai-gold-light),
    var(--thai-gold),
    var(--thai-gold-dark)
  );
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* NIEUW: Lettertype zoals logo */
.hero-text h1 {
  font-family: "Yellowtail", cursive;
  font-size: clamp(3rem, 10vw, 5.5rem);
  margin-bottom: 20px;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.8);
  font-weight: normal;
  position: relative;
  display: inline-block;
  color: var(--white);
}

.hero-text h1::after {
  content: "✦";
  font-size: 1.5rem;
  color: var(--thai-gold);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.4rem);
  max-width: 700px;
  margin: 40px auto 30px;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 25px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--white);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.btn {
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-orange {
  background: var(--thai-gold);
  color: var(--white) !important;
  box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.btn-orange:hover {
  background: var(--thai-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

#menu {
  padding: 80px 5%;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  margin: 40px 5%;
  border-radius: 50px;
  box-shadow: var(--card-shadow);
}

#menu h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--thai-gold-dark);
  position: relative;
  display: inline-block;
}

#menu h2::before,
#menu h2::after {
  content: "✦";
  color: var(--thai-gold);
  margin: 0 15px;
  font-size: 1.5rem;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.menu-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
}

.menu-grid::-webkit-scrollbar {
  display: none;
}

.menu-item {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  text-align: left;
  border: 1px solid var(--thai-gold-light);
}

@media (min-width: 768px) {
  .menu-item {
    flex: 0 0 calc(33.333% - 15px);
  }
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

.food-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.food-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--thai-gold-light), var(--thai-gold));
}

.menu-content {
  padding: 20px;
}

.menu-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--thai-gold-dark);
}

.price {
  color: var(--thai-red);
  font-weight: 800;
  font-size: 1.3rem;
  display: block;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}

.price::before {
  content: "✦ ";
  color: var(--thai-gold);
  position: absolute;
  left: 0;
}

#bestellen {
  padding: 80px 5%;
  text-align: center;
  background: white;
  margin: 40px 5%;
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--thai-gold-light);
}

.order-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.big-logo-bottom img {
  width: 100%;
  max-width: 350px;
  display: block;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 3px solid var(--thai-gold-light);
}

.order-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--thai-gold-dark);
}

.story-section {
  padding: 80px 8%;
  background: white;
  margin: 40px 5%;
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--thai-gold-light);
}

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

.story-img {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.story-img::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--thai-gold-light);
  border-radius: 20px;
  z-index: -1;
}

.story-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  border: 3px solid white;
}

.story-content {
  flex: 1.2;
  min-width: 300px;
  text-align: left;
}

.story-content h1 {
  font-size: 2.8rem;
  color: var(--thai-gold-dark);
  margin-bottom: 25px;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
}

.story-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--thai-gold), var(--thai-gold-light));
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.insta-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s;
  border: 3px solid white;
  box-shadow: var(--card-shadow);
}

.insta-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(212, 160, 23, 0.25);
  border-color: var(--thai-gold-light);
}

.qr-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--thai-gold-light);
}

.qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code {
  width: 180px;
  height: 180px;
  border: 8px solid white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
  cursor: pointer;
}

#full-menu {
  padding: 50px 8%;
  text-align: center;
  background: white;
  margin: 40px 5%;
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--thai-gold-light);
}

#full-menu h2 {
  font-family: "Yellowtail", cursive;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: normal;
  color: var(--thai-gold-dark);
}

.menu-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.menu-card {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.menu-card img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  border: 3px solid white;
  transition: transform 0.3s;
}

.menu-card img:hover {
  transform: scale(1.02);
}

.menu-card::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--thai-gold-light);
  border-radius: 15px;
  z-index: -1;
}

footer {
  padding: 40px;
  background: linear-gradient(145deg, #fff0d4, #ffe6c0);
  text-align: center;
  border-top: 3px solid var(--thai-gold-light);
  margin-top: 60px;
}

footer p {
  color: var(--thai-gold-dark);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

footer p::before,
footer p::after {
  content: "✦";
  color: var(--thai-gold);
  margin: 0 10px;
  font-size: 0.9rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--thai-gold);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
  transition: 0.3s;
}

.slider-arrow[style*="opacity: 0.5"] {
  cursor: default;
  pointer-events: none;
  background: #ccc;
  box-shadow: none;
}

.slider-arrow:hover:not([style*="opacity: 0.5"]) {
  background: var(--thai-gold-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.slider-arrow.left {
  left: -15px;
}

.slider-arrow.right {
  right: -15px;
}

@media (max-width: 768px) {
  nav {
    padding: 10px 5%;
  }
  nav ul li a {
    margin-left: 10px;
    font-size: 0.8rem;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .slider-arrow.left {
    left: 5px;
  }
  .slider-arrow.right {
    right: 5px;
  }
  .order-container {
    flex-direction: column;
    text-align: center;
  }
  .order-box {
    text-align: center !important;
  }
  .big-logo-bottom img {
    max-width: 250px;
    margin: 0 auto;
  }
  .story-container {
    flex-direction: column;
    text-align: center;
  }
  .story-content h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  #menu h2::before,
  #menu h2::after {
    display: none;
  }
  .qr-code {
    width: 150px;
    height: 150px;
  }
  header {
    height: 70vh;
  }
  .hero-text p {
    font-size: 1rem;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }
  .logo img {
    height: 35px;
  }
  nav ul li a {
    margin-left: 5px;
    font-size: 0.7rem;
  }
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }
  #menu h2,
  .order-box h2,
  .story-content h1 {
    font-size: 2rem;
  }
}

.order-form-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group.half {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--thai-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  background: rgba(
    10,
    10,
    10,
    0.03
  ); /* Lichte achtergrond gemaakt voor select */
  color: var(--text-dark);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--thai-gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.btn.w-100 {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

#full-menu p {
  text-align: left;
  margin-bottom: 25px;
}

#full-menu h3 {
  text-align: left;
  margin-top: 40px;
}
