:root {
  --primary-color: #ff9800;
  --secondary-color: #ffc107;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-hover: 0 10px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

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

.nav-links a {
  font-weight: 600;
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-dark);
  line-height: 1;
}

.nav-wrapper {
  position: relative;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(20, 15, 10, 0.65), rgba(20, 15, 10, 0.78)), url('../images/dismekan.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 20vh;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Cards (Glassmorphism) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Story / content sections (about, story blocks used across pages) */
.story-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.story-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.quote-box {
  background: var(--white);
  padding: 2rem;
  border-left: 5px solid var(--primary-color);
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  text-align: left;
}

.dark-section {
  background: #222;
  color: var(--white);
}

.dark-section h2 {
  color: var(--primary-color);
}

.dark-section p {
  color: #ddd;
}

/* Info boxes (franchising / catering contact blocks) */
.info-box {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem auto;
  max-width: 640px;
  box-shadow: var(--shadow);
}

.info-box h2 {
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.contact-email {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-top: 2rem;
}

.contact-email a {
  color: var(--primary-color);
}

/* SEO related links block used inside blog posts */
.seo-related-links a {
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--primary-color);
}

.seo-related-links a:hover {
  color: var(--primary-color);
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

input, textarea, select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: inherit;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255,152,0,0.2);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  color: var(--primary-color);
}

.footer-col a {
  color: #ccc;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--primary-color);
}

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: #eee;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .logo img {
    height: 40px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    padding: 0.5rem 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .hero {
    min-height: 28vh;
    padding: 35px 20px;
  }

  .card-grid {
    gap: 1.25rem;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    text-align: left;
  }

  .info-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .tabs {
    gap: 0.6rem;
  }

  .tab-btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.9rem;
  }

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