:root {
  --container-w: 1100px;
  --accent: #ff7a1a;
  --text: #222;
  --muted: #666;
  --bg: #fff;
  --radius: 10px;
  --gap: 1.25rem;
  font-size: 16px;
}

/* Genel Ayarlar */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background-image: url("images/background.png");
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Container */
.container {
  width: calc(100% - 2rem);
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid #eee;
  background: linear-gradient(180deg, #fff, #fff);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

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

.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.main-nav a:hover { background: #f6f6f6; }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 2rem 0;
}

.hero-left h1 { margin: 0; font-size: 2.2rem; }

.tagline { margin: 0.3rem 0; color: var(--muted); }

.hero-image img {
  width: 100%;
  height: auto;          /* Yüksekliği otomatik yap, orantılı büyüsün */
  max-height: 400px;     /* İsteğe göre maksimum yükseklik */
  object-fit: contain;    /* Resmi kırpmadan sığdır */
  object-position: center top; /* Üstten hizala */
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Menu Grid */
.menu-section h2 { margin-top: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.menu-item {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 0.9rem;
  border-radius: var(--radius);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #fff;
  border-radius: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 6px;
  display: inline-block;
  background: #fff4e6;
  padding: 4px 10px;
  border-radius: 10px;
}

/* About / Follow / Fullmenu */
.about-section, .follow-section, .fullmenu-section {
  margin: 1.25rem 0 2rem 0;
  padding: 0.9rem;
  background: #fafafa;
  border-radius: var(--radius);
  border: 1px solid #f3f3f3;
  text-align: center;
}

/* About Card */
.about-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.about-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Follow Section */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

.social-icon {
  font-size: 2rem;
  color: #333;
  transition: transform 0.2s, color 0.2s;
}

.social-icon:hover { transform: translateY(-5px); }

.social-icon.instagram:hover { color: #e4405f; }
.social-icon.facebook:hover { color: #1877f2; }

/* Full Menu */
.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.menu-content img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
}

.download-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
}

.download-btn:hover {
  background-color: #cf711f;
  transform: translateY(-3px);
}

/* Locations */
.locations-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fffaf0;
}

.locations-section h2 { font-size: 2rem; margin-bottom: 30px; color: #000; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.location-card {
  background: #fff4e6;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.location-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #d35400; }
.location-card p { font-size: 1rem; margin-bottom: 12px; color: #333; }
.location-card a {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.location-card a:hover { background-color: #cf711f; }

/* Testimonials */
.testimonials-section {
  padding: 40px 20px;
  background-color: #fff4e6;
  text-align: center;
}

.testimonials-section h2 { font-size: 2rem; margin-bottom: 30px; color: #000; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.testimonial-text { font-size: 1rem; margin-bottom: 12px; color: #333; font-style: italic; }
.testimonial-author { font-size: 0.9rem; color: var(--accent); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .hero { flex-direction: column-reverse; align-items: flex-start; }
  .hero-image img { max-width: 100%; }
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 66px;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 0.5rem;
    border-radius: 8px;
    display: none;
    min-width: 180px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
}

/* Tüm ana bölümleri hizalamak için */
.container {
  max-width: 1200px;      /* Sayfa genişliği sınırı */
  margin: 0 auto;          /* Ortala */
  padding: 0 20px;         /* Sol ve sağ boşluk */
  box-sizing: border-box;  /* Padding toplam genişliği etkilemez */
}

/* Bölümlerin dikey boşlukları */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Menü, full menu, about, follow bölümleri için özel hizalama */
.menu-section, 
.fullmenu-section, 
.about-section, 
.follow-section,
.locations-section,
.testimonials-section {
  text-align: center;      /* İçerikleri ortala */
}

/* VOLLEDIGE MENU - Kart standardizasyonu */
.fullmenu-section .menu-content img {
  border-radius: 16px;       /* Smooth kenarlar */
}

/* WAAR WE ZIJN - Lokasyon kartları */
.locations-section .location-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;       /* Aynı smooth köşe */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* TESTIMONIALS - Kartlar */
.testimonials-section .testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;       /* Smooth kenarlar */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ABOUT bölümünün kartı */
.about-section .about-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;       /* Smooth kenarlar */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ============================
   GLOBAL CARD + SECTION STYLE
   ============================ */

/* Tüm kartlarda tek standard: smooth + shadow + dengeli padding */
.card,
.menu-item,
.location-card,
.testimonial-card,
.about-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);     /* root: 10px */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover standardı */
.card:hover,
.menu-item:hover,
.location-card:hover,
.testimonial-card:hover,
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Section spacing: daha profesyonel dikey boşluk */
section {
  padding: 80px 0;   /* Uniform spacing */
  text-align: center;
}

/* Özellikle bitişik duran alanlar için ekstra düzenleme */
.about-section,
.follow-section,
.fullmenu-section,
.locations-section,
.testimonials-section {
  margin-bottom: 60px;
}

/* ============================
   ABOUT SECTION
   ============================ */

.about-card {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================
   FULL MENU IMAGE
   ============================ */

.fullmenu-section .menu-content img {
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ============================
   LOCATION CARDS
   ============================ */

.locations-section .location-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
}

/* ============================
   TESTIMONIALS CARDS
   ============================ */

.testimonials-section .testimonial-card {
  border-radius: var(--radius);
  padding: 24px;
}

/* ============================
   MENU GRID -> Kart uyumu
   ============================ */

.menu-item {
  border: 1px solid #f0f0f0;
}

.menu-item img {
  border-radius: var(--radius);
}

/* ============================
   UNIVERSAL LAYOUT UNIFIER
   ============================ */

.card img,
.location-card img,
.testimonial-card img,
.menu-item img,
.fullmenu-section img {
  border-radius: var(--radius);
}

/* GLOBAL HEADING STYLES */
h1, h2, h3 {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

/* Section titles (Volledige Menukaart, Waar we zijn, Over OranjeKip, Klantbeoordelingen, Volg ons) */
h2 {
  font-size: 2rem;        /* Tutarlı büyüklük */
  text-align: center;      /* Tüm section başlıkları ortalı */
  margin-bottom: 30px;     /* Bölümler arası ferah boşluk */
}

/* Item titles such as “Hele Kip”, “Friet”, “Kippensoep” */
h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center;      /* Menü ürünlerinde ortalama */
}

/* HERO başlığı ayrı ve büyük görünmesi için */
.hero-left h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* GLOBAL CARD STANDARDIZATION — TÜM KARTLAR SMOOTH */
.location-card,
.testimonial-card,
.about-card,
.menu-content img,
.menu-item img {
    border-radius: 16px !important;
}

/* Kart kapsayıcıları için arka plan + box shadow */
.location-card,
.testimonial-card,
.about-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Menü ürünlerinin görselleri daha estetik dursun */
.menu-item img {
    border-radius: 12px !important;
}

/* PDF kartı */
.fullmenu-section .menu-content {
    border-radius: 16px !important;
    overflow: hidden;
}

.locations-section {
  background-color: #fffaf0;
}

.testimonials-section {
  background-color: #fff4e6;
}

.locations-section,
.testimonials-section {
  background: #f2efe8; /* Daha koyu, kart köşeleri belirgin olur */
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto; /* Ortala */
    gap: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: #e68200;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* MOBIL AYARLAR (zaten %60 trafiğin buradan gelir) */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img {
        max-width: 350px;
    }
}

.hero-content h1 {
    font-size: 4rem;    /* Büyük, premium başlık */
    font-weight: 700;
    color: #1a1a1a;     /* Koyu gri – siyah değil → premium görünüm */
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.7rem;      /* Eskinin en az 2 katı */
    font-weight: 600;
    color: #ff7a00;         /* Daha koyu ve görünür turuncu */
    letter-spacing: 0.5px;  /* Daha modern */
}

.hero .tagline {
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.hero {
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.9),
        rgba(255,255,255,1)
    );
}

/* NAVIGATION LINKS */
.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;           /* Kalın ve güçlü */
    font-family: 'Arial', sans-serif;  /* Daha modern görünüm */
    font-size: 1.1rem;
    letter-spacing: 1px;        /* Harf aralığını artır */
    text-transform: uppercase;   /* Büyük harf */
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;  /* Smooth hover */
    position: relative;
}

/* Hover efekti: alt çizgi animasyonu ve renk değişimi */
.main-nav a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

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

.main-nav a:hover {
    color: var(--accent);
    transform: translateY(-2px); /* Hafif yukarı hareket */
}

/* Tüm section başlıkları için üst boşluk */
section h2 {
    margin-top: 2rem !important;  /* Önceki marginleri geçersiz kılar */
    margin-bottom: 30px;
}

/* Tüm ana başlıklar için üst boşluk */
#menu h2,
#locations h2,
#testimonials h2,
#about h2,
#follow h2,
#fullmenu h2 {
    margin-top: 2rem;
    margin-bottom: 30px;
}

.site-footer {
    text-align: center;
    padding: 20px 0;
    background: #f8f8f8;
    margin-top: 40px;
}

.footer-contact h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.footer-contact a {
    color: #ff6600;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.hero-rotisserie {
    width: 100%;
    max-height: 325px;
    overflow: hidden;
}

.hero-rotisserie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom: 6px solid #ff6600;
}

.preview-banner {
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 9999;
  line-height: 1.4;
}

.preview-banner strong {
  font-weight: 700;
}

.preview-banner .no-orders {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: #c00000;
}
