:root {
  --primary-white: #ffffff;
  --chocolate: #3e2723;
  --caramel: #d4af37;
  --whatsapp-green: #25d366;
  --ruby-blue: #2563eb;
  --text-muted: #666666;
  --footer-bg: #1a1a1a;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- GLOBAL RESETS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-white);
  color: var(--chocolate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* --- ANIMATION CLASSES --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- STICKY HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-white);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo-img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--chocolate);
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-container:hover .logo-text {
  color: var(--caramel);
}

.logo-container:hover .nav-logo-img {
  transform: scale(1.05);
}

/* --- NAVIGATION & HAMBURGER --- */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--chocolate);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--caramel);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--chocolate);
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  height: 85vh;
  margin-top: 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('Images/header1.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

/* --- BUTTONS --- */
.btn-header {
  background-color: var(--whatsapp-green);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  text-transform: uppercase;
  margin: 5px;
}

.btn-gold {
  background: var(--caramel);
  color: white;
  border: 2px solid var(--caramel);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- SECTIONS --- */
section {
  padding: 80px 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

/* --- NEW CONVERSION STYLES --- */
.trust-badges-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 8%;
  background: white;
}

.trust-badge-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.bestsellers-section {
  background: #fffaf0;
}

.badge-most-ordered {
  background: var(--caramel);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.price-anchor-strip {
  background: var(--chocolate);
  color: var(--primary-white);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  margin-top: 30px;
}

.process-step {
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.gallery-caption {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
  color: var(--caramel);
  text-align: center;
  text-transform: uppercase;
}

.footer-cta-box {
  background: var(--caramel);
  color: white;
  text-align: center;
  padding: 50px 5%;
  margin: 40px 8% 20px;
  border-radius: 20px;
}

/* --- TRADITION (ABOUT) --- */
.tradition {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.tradition-img {
  width: 100%;
  max-width: 500px;
}

.tradition-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 15px 15px 0px var(--caramel);
}

.est-badge {
  color: var(--caramel);
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

/* --- SPECIALTIES GRID --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.spec-card {
  background: white;
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.img-box {
  height: 250px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(62, 39, 35, 0.1);
}

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

.spec-body {
  padding: 1.5rem;
  text-align: center;
}

/* --- WHY US & REVIEWS --- */
.why-us {
  background: #fafafa;
}

.why-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card,
.review-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.stars {
  color: var(--caramel);
  margin-bottom: 1rem;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item-wrapper {
  display: flex;
  flex-direction: column;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- FOOTER --- */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 60px 8% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--caramel);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.btn-insta {
  background: var(--ruby-blue);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #666;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .btn-header {
    display: none;
  }

  .tradition {
    flex-direction: column;
    text-align: center;
  }

  .tradition-img {
    order: 2;
  }

  .price-anchor-strip {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .tradition {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  }
}

/* --- FOOTER FIXES --- */

/* --- FOOTER REFINEMENTS --- */
footer {
  padding-top: 80px;
  /* Increased space for better visual rhythm */
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.8fr;
  /* Adjusted for map container */
  gap: 40px;
  align-items: start;
}

/* Typography & Brand */
.footer-brand h2 {
  color: var(--caramel);
  /* Matching the brand accent color */
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Links & Contact Lists */
.footer-col h4 {
  color: var(--caramel);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Instagram Button Fix */
.btn-insta {
  background: var(--ruby-blue) !important;
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: var(--transition);
}

.btn-insta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Map Container Polish */
.footer-col iframe {
  width: 100%;
  height: 220px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto 1.5rem;
  }
}
