/* The Vedic Kitchen - Main Stylesheet (Redesigned) */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Variables */
:root {
  --royal-green: #0A4D2C;
  --dark-green: #073921;
  --light-green: #1A6D3C;
  --yellow-gold: #D4AF37;
  --gold-highlight: #F2D675;
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --black: #000000;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  margin-bottom: 1rem;
  color: var(--royal-green);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--royal-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--yellow-gold);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--royal-green);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--yellow-gold);
  margin: 0.5rem auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--royal-green);
  color: var(--white);
  border: 2px solid var(--royal-green);
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--yellow-gold);
  color: var(--black);
  border: 2px solid var(--yellow-gold);
}

.btn-secondary:hover {
  background-color: var(--gold-highlight);
  border-color: var(--gold-highlight);
  color: var(--black);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--yellow-gold);
  color: var(--yellow-gold);
}

.btn-outline:hover {
  background-color: var(--yellow-gold);
  color: var(--black);
}

/* Header and Navigation */
.header {
  background-color: var(--black);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  color: #FFF;;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--royal-green);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/b_green.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold-highlight);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlight {
  margin-top: 2rem;
  color: var(--gold-highlight);
  font-weight: 500;
  margin-bottom: -0.5rem;
}

/* Menu Section */
.menu-section {
  background-color: var(--white);
  position: relative;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: -1;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-btn {
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--royal-green);
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--royal-green);
  color: var(--white);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--light-gray);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-size: 1.2rem;
  color: var(--royal-green);
}

.menu-item-price {
  font-weight: 600;
  color: var(--yellow-gold);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b_green2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Tiffin Services Section */
.tiffin-section {
  background-color: var(--white);
  position: relative;
}

.tiffin-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.tiffin-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: 2rem 0;
  position: relative;
  z-index: 1;
}

.tiffin-plan {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--light-gray);
}

.tiffin-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plan-title {
  color: var(--royal-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2rem;
  color: var(--yellow-gold);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b_green.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
} */

.footer-contact .contact-info {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-contact a {
  word-break: break-word;
  color: var(--white);
}


.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--yellow-gold);
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--royal-green);
}

.map-container {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: var(--royal-green);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-social h3,
.footer-contact h3 {
  color: var(--gold-highlight);
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-social a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover,
.footer-social a:hover {
  opacity: 1;
  color: var(--gold-highlight);
}

.footer-social ul {
  display: flex;
  gap: 1rem;
}

.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social li a:hover {
  background-color: var(--yellow-gold);
  color: var(--black);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Indian Design Elements */
.mandala-divider {
  width: 100%;
  height: 50px;
  background-image: url('../images/mandala-divider.png');
  background-repeat: repeat-x;
  background-size: contain;
  margin: 2rem 0;
}

.lotus-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../images/lotus-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

.gold-accent {
  color: var(--yellow-gold);
}

/* Featured Food Section */
.featured-food {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.food-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.food-card:hover {
  transform: translateY(-5px);
}

.food-image {
  height: 250px;
  overflow: hidden;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-content {
  padding: 1.5rem;
}

.food-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--royal-green);
}

.food-desc {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

/* Call to Action Sections */
.cta-section {
  background-color: var(--royal-green);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/b2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--gold-highlight);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  color: var(--yellow-gold);
  margin-bottom: 1.5rem;
}

.value-title {
  color: var(--royal-green);
  margin-bottom: 1rem;
}

/* How It Works Section */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
  max-width: 250px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--royal-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--yellow-gold);
  border-radius: 50%;
  top: -5px;
  left: -5px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px var(--shadow);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
    top: 125px;
    background: #000;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 80%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .menu-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .category-btn {
    width: 80%;
    margin-bottom: 0.5rem;
  }
}

/* Font for The Vedic Kitchen title */
@font-face {
  font-family: 'Samarkan';
  src: url('../fonts/SAMAN___.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.vedic-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-highlight);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.vedic-word {
  font-family: 'Samarkan', serif;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
}

.footer-contact {
  position: relative;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--gold-highlight);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-contact h3 {
  color: var(--gold-highlight);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-highlight);
}

.footer-contact p {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--gold-highlight);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.footer-contact .contact-info {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(5px);
}

.footer-contact p:hover .contact-info {
  opacity: 1;
  transform: translateY(0);
}

/* Font for The Vedic Kitchen */
@font-face {
  font-family: 'Samarkan';
  src: url('../fonts/SAMAN___.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.vedic-word {
  font-family: 'Samarkan', cursive;
  font-size: 1.2em;
  color: var(--gold-highlight);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    word-break: break-word;
    flex-wrap: wrap;
  }

  .vedic-word {
    font-size: 1.5rem !important;
    display: inline-block;
  }

  .hero-content {
    padding: 1rem !important;
  }
}
@media (max-width: 576px) {
  .btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 576px) {
  .hero {
    height: auto !important;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.3;
    word-break: break-word;
    flex-wrap: wrap;
    text-align: center;
  }

  .hero-content {
    padding: 1rem !important;
  }
}


/* for whatsapp */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  padding: 10px;
  border-radius: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  width: 60px;
  height: 60px;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

.whatsapp-float i {
  pointer-events: none;
  font-size: 40px;
}

/* Mobile size optimization */
@media (max-width: 576px) {
  .whatsapp-float {
    font-size: 22px;
    padding: 12px;
    bottom: 16px;
    right: 16px;
  }
}
