/* style.css - BABA LOKENATH SWEETS (same as previous version) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #fef7e4;
  --cream-dark: #faeac9;
  --orange: #e67e22;
  --orange-deep: #d35400;
  --gold: #c49b3b;
  --soft-gold: #e3b86b;
  --brown-soft: #8b5a2b;
  --text-dark: #3e2c1b;
  --white: #ffffff;
  --shadow: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.02);
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.5;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

/* CINZEL for headings */
h1, h2, h3, h4, .logo h2, .section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.9);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: -0.02em;
  font-family: 'Cinzel', serif;
}

.logo span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--brown-soft);
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--orange);
  border-bottom-color: var(--soft-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  background: white;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.02);
  font-family: 'Inter', sans-serif;
}

.btn-wa {
  background: #25D366;
  color: white;
  border: none;
}

.btn-wa i {
  color: white;
  margin-right: 8px;
}

.btn-call {
  background: var(--orange);
  color: white;
  border: none;
}

.btn-call i {
  margin-right: 8px;
}

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

.btn-outline:hover {
  background: var(--orange);
  color: white;
}

.btn-wa:hover {
  background: #20b859;
  transform: scale(1.02);
}

.btn-call:hover {
  background: var(--orange-deep);
  transform: scale(1.02);
}

/* Hero Section */
.hero {
  background: linear-gradient(100deg, #faeac9 0%, #fff6e6 100%);
  padding: 60px 0 70px;
  border-bottom: 4px solid var(--soft-gold);
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 350px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--orange-deep);
  margin-bottom: 12px;
  font-family: 'Cinzel', serif;
}

.hero-content .tagline {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 30px;
  border-left: 5px solid var(--orange);
  padding-left: 20px;
  font-family: 'Cinzel', serif;
}

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

.hero-image {
  flex: 1 1 300px;
  min-height: 280px;
  border-radius: 40px 40px 40px 0;
  box-shadow: var(--shadow);
  border: 4px solid white;
  background-size: cover;
  background-position: center;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 20px;
  position: relative;
  font-family: 'Cinzel', serif;
}

.section-title:after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--gold);
  display: block;
  margin-top: 10px;
  border-radius: 4px;
}

.about-text {
  font-size: 1.2rem;
  max-width: 900px;
  background: rgba(255,255,240,0.6);
  padding: 30px 40px;
  border-radius: 30px 10px 30px 10px;
  box-shadow: var(--shadow);
  border: 1px solid #fff3d1;
  font-family: 'Inter', sans-serif;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.gallery-item {
  background: white;
  border-radius: 30px 10px 30px 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.2s ease-in-out;
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--soft-gold);
  box-shadow: 0 30px 35px -15px rgba(230,126,34,0.3);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  text-align: center;
  font-weight: 600;
  padding: 14px 5px;
  background: var(--cream-dark);
  color: var(--brown-soft);
  font-family: 'Cinzel', serif;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  padding: 35px 20px 25px;
  border-radius: 40px 10px 40px 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.15s;
  border: 1px solid #ffeac2;
}

.service-card:hover {
  background: #fffbf0;
  border-color: var(--orange);
  transform: scale(1.02);
}

.service-card i {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
}

.service-card p {
  font-family: 'Inter', sans-serif;
}

/* Info Row (Hours + Map) */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff7eb;
  border-radius: 50px 20px 50px 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

.hours-block, .map-block {
  flex: 1 1 280px;
}

.hours-block i, .map-block i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.hours-block h3, .map-block h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--orange-deep);
  font-family: 'Cinzel', serif;
}

.hours-detail {
  background: white;
  padding: 22px;
  border-radius: 28px;
  display: inline-block;
  font-weight: 600;
  border: 2px dashed var(--orange);
}

.hours-detail p {
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
}

.map-container {
  width: 100%;
  height: 200px;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Section */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: white;
  padding: 40px;
  border-radius: 60px 20px 60px 20px;
  box-shadow: var(--shadow);
}

.contact-info {
  flex: 1 1 260px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--orange-deep);
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.contact-address {
  margin: 20px 0;
  font-size: 1.1rem;
  background: #fef2dd;
  padding: 15px 20px;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.contact-buttons .btn {
  text-align: center;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #3e2c1b;
  color: #faeac9;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 8px solid var(--gold);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-shop h4 {
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 600;
  font-family: 'Cinzel', serif;
  margin-bottom: 10px;
}

.footer-shop p {
  margin: 6px 0;
  font-family: 'Inter', sans-serif;
}

.footer-links a {
  color: var(--soft-gold);
  text-decoration: none;
  display: block;
  margin: 6px 0;
  font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  color: #cbaa7a;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 700px) {
  .nav-flex {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-row {
    padding: 25px;
  }
  
  .hero-content .tagline {
    font-size: 1.2rem;
  }
}

@media (max-width: 450px) {
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .contact-grid {
    padding: 25px;
  }
  
  .contact-info {
    flex: 1 1 100%;
  }
  
  .contact-info[style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 3px solid var(--cream-dark);
    padding-top: 25px;
  }
}