@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #800020; /* Deep Maroon */
  --secondary-color: #ffb6c1; /* Light Pink */
  --accent-color: #ff1493; /* Deep Pink */
  --gradient-pink: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  --gradient-maroon: linear-gradient(135deg, #800020 0%, #4a0012 100%);
  --dark-color: #111111;
  --light-color: #ffffff;
  --gray-color: #f5f5f5;
  --text-color: #333333;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 40px rgba(128, 0, 32, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gray-color);
  color: var(--text-color);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: var(--light-color);
  padding: 15px 5%;
  box-shadow: var(--shadow);
}

header.scrolled .logo {
  color: var(--primary-color);
}

header.scrolled .nav-links li a {
  color: var(--dark-color);
}

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

header.scrolled .menu-toggle span {
  background: var(--primary-color);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1001;
}

.logo span {
  color: var(--secondary-color);
}

header.scrolled .logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

header.scrolled .nav-links li a::before {
  background: var(--primary-color);
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--light-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Page Header (for pages other than home) */
.page-header {
  height: 40vh;
  background: var(--gradient-maroon);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--light-color);
  padding-top: 80px;
}

.page-header h1 {
  color: var(--light-color);
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 1rem;
}

.breadcrumb a {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: url('https://images.unsplash.com/photo-1558961363-fa8fdf82db35?q=80&w=2065&auto=format&fit=crop') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--light-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.hero-title {
  color: var(--light-color);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-location i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-pink);
  color: var(--dark-color);
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.hero-btns {
  display: flex;
  gap: 20px;
}

/* Highlights Section */
.highlights {
  padding: 50px 5%;
  background: var(--light-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--gray-color);
  border-radius: 15px;
  transition: var(--transition);
  border-left: 5px solid var(--primary-color);
}

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

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-pink);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--dark-color);
}

.highlight-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.highlight-text p {
  color: #666;
  font-size: 0.9rem;
}

/* Categories Section */
.categories {
  padding: 100px 5%;
}

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

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 30px;
}

.category-overlay h3 {
  color: var(--light-color);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay h3 {
  transform: translateY(0);
  color: var(--secondary-color);
}

/* Menu Page */
.menu-section {
  padding: 80px 5%;
  background: var(--gray-color);
}

.menu-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  border: none;
  background: var(--light-color);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.product-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 25px;
}

.product-category {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.add-to-cart-btn:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 5%;
  background: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--gradient-maroon);
  padding: 40px;
  border-radius: 20px;
  color: var(--light-color);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  color: var(--light-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.info-text h4 {
  color: var(--light-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-text p {
  margin-bottom: 0;
}

.contact-form {
  padding: 40px;
  background: var(--gray-color);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.error-msg {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

/* Content Pages (Terms, Privacy) */
.content-section {
  padding: 80px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.content-box {
  background: var(--light-color);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.content-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  margin-top: 30px;
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.content-box ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-box ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 80px 5% 30px;
}

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

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-text {
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

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

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

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  opacity: 0.7;
}

.footer-links li a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0.7;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--light-color);
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.5s ease-in-out;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    color: var(--dark-color);
    font-size: 1.2rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  header.scrolled .menu-toggle span {
    background: var(--dark-color);
  }
  
  .menu-toggle.active span {
    background: var(--dark-color) !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .content-box {
    padding: 30px 20px;
  }
}
