:root {
  --primary-color: #9a1c9e;
  --secondary-color: #e17dff;
  --dark-color: #333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white-color: #fff;
  --black-color: #000;
  --primary-light: rgba(250, 94, 255, 0.9);
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Space for fixed navbar */
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

section {
  padding: 5rem 0;
}

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

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

/* Navigation Bar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1rem 5%;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar a {
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.navbar a:hover::after {
  width: 100%;
}

.order-btn {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 1rem;
}

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

/* Hero Section */
.hero {
  height: calc(100vh - 80px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), 
    rgba(0, 0, 0, 0.6)),
    url('Background.JPG') no-repeat center center/cover;
  color: var(--white-color);
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero h1 span {
  color: var(--primary-color);
  display: inline-block;
}

.hero p {
  font-size: 1.8rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Introduction Section */
.intro {
  background-color: var(--light-color);
}

.intro-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.intro-text p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--gray-color);
}

.intro-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
}

.intro-images::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  top: -1.5rem;
  left: -1.5rem;
  z-index: -1;
}

.intro-images img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.intro-images img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
  text-align: center;
  background-color: var(--white-color);
}

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card i {
  margin-bottom: 2rem;
  font-size: 4rem;
  color: var(--primary-color);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card p {
  color: var(--gray-color);
  font-size: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--light-color);
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 5rem 0;
}

.choose-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.choose-card:hover::before {
  height: 10px;
}

.choose-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.choose-card p {
  color: var(--gray-color);
  font-size: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.stats div {
  text-align: center;
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.stats div strong {
  font-size: 3.5rem;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stats div span {
  font-size: 1.5rem;
  color: var(--gray-color);
}

/* How We Work Section */
.how-we-work {
  text-align: center;
  background-color: var(--white-color);
}

.how-we-work h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.step {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 4rem 2rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: bold;
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.step:nth-child(1)::before {
  content: '1';
}

.step:nth-child(2)::before {
  content: '2';
}

.step:nth-child(3)::before {
  content: '3';
}

.step h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.step p {
  color: var(--gray-color);
  font-size: 1.5rem;
}

/* Our Treats Section */
.our-treats {
  background-color: var(--light-color);
  text-align: center;
}

.our-treats h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.treat-card {
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.treat-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white-color);
  font-size: 2rem;
  z-index: 1;
}

.treat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.treat-card:hover::after {
  opacity: 1;
}

.treat-card:nth-child(1) {
  background: url('Hamburger 1.jpg') center/cover no-repeat;
}

.treat-card:nth-child(2) {
  background: url('Pizza 1.webp') center/cover no-repeat;
}

.treat-card:nth-child(3) {
  background: url('extra 3.png') center/cover no-repeat;
}

.treat-card:nth-child(4) {
  background: url('extra 1.png') center/cover no-repeat;
}

.treat-card:nth-child(5) {
  background: url('Culinary.jpeg') center/cover no-repeat;
}

.view-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-light);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  opacity: 0;
  transition: var(--transition);
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  width: 80%;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(2px);
}

.treat-card:hover .view-gallery {
  opacity: 1;
}

/* Meet the Chef Section */
.meet-the-chef {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
  align-items: center;
  background-color: var(--white-color);
}

.chef-info h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.chef-info p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--gray-color);
}

.chef-photo {
  position: relative;
}

.chef-photo img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.chef-photo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  top: -1.5rem;
  left: -1.5rem;
  z-index: -1;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--white-color);
  margin: 5% auto;
  padding: 3rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.modal-header h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-container img {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.gallery-container img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* Video Thumbnail Styles */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 94, 120, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.play-icon i {
  color: white;
  font-size: 2rem;
  margin-left: 5px;
}

.video-thumbnail:hover .play-icon {
  background-color: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* Order Modal Styles */
.order-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.order-content {
  background-color: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.close-order {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--dark-color);
  cursor: pointer;
  transition: var(--transition);
}

.close-order:hover {
  color: var(--primary-color);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(250, 94, 255, 0.2);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: #e04dff;
  transform: translateY(-2px);
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: var(--primary-color);
  bottom: -8px;
  left: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.contact-item a {
  color: var(--white-color);
  transition: var(--transition);
  text-decoration: none;
}

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

.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer p {
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer h3::after {
    left: 25%;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
  }
}

/* Animations & Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-heading {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 1rem = 9px */
  }

  section {
    padding: 6rem 0;
  }

  .header {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .navbar {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.6rem;
  }

  .modal-content {
    padding: 2rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .order-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%; /* 1rem = 8px */
  }

  .section-heading {
    font-size: 2.8rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .order-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }
}