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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Beautiful Pattern Background */
.pattern-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--primary) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--secondary) 1px, transparent 1px),
    linear-gradient(45deg, transparent 40%, rgba(210, 105, 30, 0.1) 50%, transparent 60%);
  background-size: 50px 50px, 30px 30px, 100px 100px;
  background-position: 0 0, 25px 25px, 0 0;
  z-index: -1;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}





/* Flavors Section */
.flavors-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

.card-header {
  margin-bottom: 1.5rem;
}

.flavor-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  filter : drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.623));
    transition: transform 0.3s ease;
}
.card:hover .flavor-emoji {
  transform: scale(1.1) rotate(10deg);
  transition: transform 0.3s ease;
}
.card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.flavor-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.developing {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: var(--bg);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
}

.features-list {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff !important;
  background-color: #ffffff8f !important;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.8);
}

.contact-card {
  background: var(--card-bg);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 15px 50px var(--shadow);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(210, 105, 30, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(210, 105, 30, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-cta {
  text-align: center;
  padding: 2rem;
  background: var(--gradient);
  border-radius: 15px;
  color: white;
  margin-top: 2rem;
}

.contact-cta strong {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav {
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .about-section,
  .flavors-section,
  .contact-section {
    padding: 4rem 0;
  }
}
/*
 * Additional pattern styles for The Halal Strip website
 *
 * These rules introduce subtle patterned overlays that complement the existing
 * earthy color palette of the site. They can be appended to your current
 * `style.css` file or included separately after the main stylesheet.
 *
 * Each section gets its own pseudo‑element overlay which is positioned
 * absolutely behind the content. The overlays use gradients and low opacities
 * to avoid overwhelming the text and visuals. Adjust the `opacity` values
 * if you’d like the patterns to stand out more or fade further into the
 * background.
 */

/* Grill stripe pattern for the Flavors section
 * The repeating linear gradient creates diagonal lines reminiscent of
 * grill marks. It sits behind the content with reduced opacity. */
.flavors-section {
  position: relative;
  z-index: 1;
}

.flavors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  /* Diagonal stripes using the accent color; adjust sizes for a tighter or looser pattern */
  background-image: repeating-linear-gradient(
    45deg,
    rgba(210, 105, 30, 0.2) 0px,
    rgba(210, 105, 30, 0.2) 2px,
    transparent 2px,
    transparent 12px
  );
  background-size: 40px 40px;
}

/* Marrakesh‑inspired star pattern for the About section
 * Inspired by Islamic geometric art, this pattern uses nested radial gradients.
 * It subtly reinforces the Halal aspect without being distracting. */
.about-section {
  position: relative;
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  /* Two radial patterns combine: one for small dots and one repeating ring pattern */
  background-image:
    radial-gradient(var(--primary) 9px, transparent 10px),
    repeating-radial-gradient(
      var(--primary) 0,
      var(--secondary) 4px,
      transparent 5px,
      transparent 20px,
      var(--secondary) 21px,
      var(--secondary) 25px,
      transparent 26px,
      transparent 50px
    );
  background-size: 30px 30px, 90px 90px;
}

/* Woven pattern for the Contact section
 * Adapted from the “Chocolate Weave” CSS pattern. It uses multiple
 * linear gradients to create a basket‑weave appearance. The colors
 * reference the site’s secondary and accent tones. */
.contact-section {
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-color: var(--bg);
  /* Three layered linear gradients create the weave; the transparent portions
   * let the underlying background color show through. */
  background-image:
    linear-gradient(
      45deg,
      rgba(244, 164, 96, 0.3) 12%,
      transparent 12%,
      transparent 88%,
      rgba(244, 164, 96, 0.3) 0
    ),
    linear-gradient(
      135deg,
      transparent 37%,
      rgba(139, 69, 19, 0.3) 0,
      rgba(139, 69, 19, 0.3) 63%,
      transparent 0
    ),
    linear-gradient(
      45deg,
      transparent 37%,
      rgba(244, 164, 96, 0.3) 0,
      rgba(244, 164, 96, 0.3) 63%,
      transparent 0
    );
  background-size: 25px 25px;
}