/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  color: #f2f2f2;
}

header {
  background-color: #1a1a1a;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Black Ops One', cursive;
  font-size: 2rem;
  color: #ff3300;
}

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

nav ul li a {
  color: #f2f2f2;
  text-decoration: none;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff3300;
}

/* Hero Section */
/* === Hero Section Fire Dust === */
#hero {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
  color: white;
  padding: 120px 20px;
  text-align: center;
  z-index: 1;
}

/* Container for Fire Dust */
.fire-dust {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.dust {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ff6600, #ff3300);
  border-radius: 50%;
  box-shadow: 0 0 8px #ff4500;
  animation: dustUp 8s linear infinite;
  left: calc(10% * var(--i));
  animation-delay: calc(var(--i) * 0.7s);
  opacity: 0.8;
}

@keyframes dustUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50vh) scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(0.6);
    opacity: 0;
  }
}


.fire-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('https://media.tenor.com/IbB7PRu0GvsAAAAC/fireworks-sparkles.gif') center center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.welcome-text {
  font-size: 3rem;
  color: #ff3300;
  z-index: 1;
  transition: 0.4s ease;
}

.typed-text {
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 20px;
  font-weight: bold;
  z-index: 1;
}

/* Fire burst on hover */
.welcome-text:hover {
  animation: sparkle 1s ease-in-out forwards;
}

@keyframes sparkle {
  0% {
    text-shadow: 0 0 0 #fff;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px #fff, 0 0 20px #ffff66;
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 0 #fff;
    transform: scale(1);
  }
}

/* Button fiery effect */
.fire-hover:hover {
  box-shadow: 0 0 20px #ff3300, 0 0 30px #ff0000;
  background-color: #cc2900;
  transition: 0.3s;
}
.sparkle-logo {
  font-family: 'Black Ops One', cursive;
  font-size: 2.5rem;
  color: #ffcc00;
  text-shadow:
    0 0 5px #ffcc00,
    0 0 10px #ff9900,
    0 0 15px #ff6600,
    0 0 20px #ff3300;
  animation: sparkleLoop 2s infinite ease-in-out;
  cursor: pointer;
}

@keyframes sparkleLoop {
  0%, 100% {
    text-shadow:
      0 0 5px #ffcc00,
      0 0 10px #ff9900,
      0 0 15px #ff6600,
      0 0 20px #ff3300;
  }
  50% {
    text-shadow:
      0 0 10px #ffffff,
      0 0 15px #ffcc00,
      0 0 20px #ff6600,
      0 0 25px #ff3300;
  }
}
/* === OUR STORY SECTION === */
#our-story {
  background-color: #1a1a1a;
  padding: 80px 30px;
  color: #fefefe;
  position: relative;
}

.story-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.story-image img {
  width: 400px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
  animation: fadeInLeft 2s ease;
}

.story-content {
  max-width: 600px;
  text-align: left;
  animation: fadeInRight 2s ease;
}

.section-title {
  font-size: 2.8rem;
  color: #ff5500;
  margin-bottom: 20px;
  font-family: 'Black Ops One', cursive;
  animation: fireGlow 2s infinite alternate ease-in-out;
}

.story-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #eaeaea;
}

.highlight {
  color: #ffcc00;
  font-weight: bold;
}

/* Glow effect */
@keyframes fireGlow {
  from {
    text-shadow: 0 0 10px #ff3300, 0 0 20px #ff5500;
  }
  to {
    text-shadow: 0 0 20px #ff9900, 0 0 30px #ff3300;
  }
}

/* Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .story-flex-container {
    flex-direction: column;
    text-align: center;
  }

  .story-content {
    text-align: center;
  }
}
#menu {
  background-color: #0f0f0f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #ff4500;
  margin-bottom: 40px;
  animation: fireGlow 2s infinite alternate ease-in-out;
  font-family: 'Black Ops One', cursive;
}

#menu-book {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.menu-book-container {
  max-width: 600px;
  margin: auto;
  position: relative;
  perspective: 1000px;
  min-height: 300px;
  margin-bottom: 80px;
}

.menu-page {
  background-color: #1a1a1a;
  border: 1px solid #ff4500;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
  transition: all 0.8s ease;
  transform-style: preserve-3d;
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.menu-page.active {
  display: block;
  animation: flipIn 0.6s ease forwards;
}

@keyframes flipIn {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

.menu-item {
  margin-bottom: 20px;
  background-color: #111;
  padding: 15px;
  border-radius: 10px;
  border-left: 5px solid #ff6600;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.2);
  text-align: left;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #ffcc00;
}

.menu-item p {
  margin: 5px 0 0;
  color: #fff;
  font-weight: bold;
}

.menu-controls {
 display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.menu-controls button {
  background-color: #ff4500;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.menu-controls button:hover {
  background-color: #cc3300;
}

#gallery {
  background-color: #111;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.section-title {
  font-size: 2.8rem;
  color: #ff5500;
  animation: fireGlow 2s infinite alternate ease-in-out;
  font-family: 'Black Ops One', cursive;
}

/* Reuse glow */
@keyframes fireGlow {
  from {
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff9933;
  }
  to {
    text-shadow: 0 0 20px #ff9933, 0 0 30px #ff4500;
  }
}
#contact {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #ff4500;
  margin-bottom: 40px;
  font-family: 'Black Ops One', cursive;
  animation: fireGlow 2s infinite alternate ease-in-out;
}

.contact-container {
  max-width: 600px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.2);
  outline: none;
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.5);
}

.contact-form button {
  background-color: #ff4500;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc3300;
  transform: scale(1.05);
}

/* 🔥 Glow Heading Animation */
@keyframes fireGlow {
  from {
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff9933;
  }
  to {
    text-shadow: 0 0 20px #ff9933, 0 0 30px #ff4500;
  }
}
.manvi-footer {
  background-color: #121212;
  color: #f2f2f2;
  text-align: center;
  padding: 25px 15px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #333;
}

.manvi-footer .footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.manvi-footer .footer-links a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.manvi-footer .footer-links a:hover {
  color: #ffcc00;
  text-shadow: 0 0 6px #ff6600;
}
