/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  background-color: #fff8ee;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* ================= HEADER ================= */
body {
  padding-top: 110px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  background: #f37021;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.nav-container {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 80px;
}

/* Brand Section */
.brand-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.logo {
  width: 85px;
  height: auto;
  border-radius: 20px;
}

/* Brand Text */
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-top {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 4px;
  color: black;
  margin: 0;
  line-height: 1.1;
}

.exports-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.brand-bottom {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 8px;
  color:black;
}
.brand-tagline {
  font-family: 'Cinzel', serif;
   font-weight: 700;
  font-size: 14px;
  color: black;
  margin-top: 0px;
  letter-spacing: 1px;
}
.line {
  width: 60px;
  height: 1.2px;
  background: linear-gradient(to right, transparent, #4a1d0f, #4a1d0f, transparent);
  opacity: 0.8;
}

/* ================= MENU ================= */
.menu-icon {
  justify-self: end;
  font-size: 26px;
  cursor: pointer;
  color: #4b1e0f;
}

/* Hide menu by default */
.nav-menu {
  display: none;
}

.nav-menu.show {
  display: flex;
  position: absolute;
  top: 110px;
  right: 20px;
  background:white;
  flex-direction: column;
  width: 200px;
  padding:  0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.nav-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  text-decoration: none;
  color: #4b1e0f;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* Hover color change */
.nav-menu a:hover {
  animation: blinkEffect 0.6s infinite;
  color: white;
}
/* ================= HERO ================= */
/* Hero Section */
.hero {
  width: 100%;
  margin-top: 0; /* Important: since navbar already has spacing */
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}


/* ================= INTRO ================= */
.intro {
  padding: 60px 20px;
  text-align: center;
}

.intro-text {
  font-size: 18px;
  max-width: 900px;
  margin: auto;

}
.intro h1{
  font-family: 'Cinzel', serif;
}
/* ================= SLIDER ================= */
/* Center Featured Products Section */
.featured-products {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Cinzel', serif;
}
.featured-products h1 {
  margin-bottom: 15px;   /* Adjust gap here */
}
.slider-container {
  display: flex;
  justify-content: center;   /* Centers image horizontally */
  align-items: center;
  position: relative;
  width: 100%;
}

.slide {
  max-width: 600px;   /* Control image size */
  width: 100%;
  height: auto;
  display: none;      /* Hide all images */
  border-radius: 12px;
}

.slide.active {
  display: block;     /* Show active image */
  margin: 0 auto;     /* Extra safety centering */
}

/* ================= YOUTUBE ================= */
.youtube-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Cinzel', serif;
}
.youtube-section h2{
  margin-bottom: 15px;
}
.youtube-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.youtube-container iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 20px 0;
  background: #c1651a;
  color: white;
  margin-top: 40px;
}
/* ================= CONTACT PAGE ================= */

.page-content {
  width: 100%;
  margin: 0;                 /* remove all outer margins */
  padding: 80px 20px;        /* inner spacing only */
  background: #fff8ee;
  text-align: center;
}

.page-content h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 50px;
  font-family: 'Cinzel', serif;
}

.contact-details p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* REMOVE footer margin */
.page-content {
  flex: 1;
}

/* ================= FLOATING ICONS ================= */
.floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-icons a img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.floating-icons a img:hover {
  transform: scale(1.1);
}
/* ================= COMPACT RESPONSIVE FOOTER ================= */

.footer-contact {
  background: #1f1f1f;
  color: white;
  text-align: center;
  padding: 18px 15px;
}

/* Footer heading */
.footer-contact h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Contact items */

.footer-contact .contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
/* Icon styling */
.footer-contact .contact-item i {
  color: red;
  font-size: 16px;
  min-width: 20px;
}

@keyframes blinkEffect {
  0%   { background-color: #e7b07c; }
  50%  { background-color: #d88f55; }
  100% { background-color: #e7b07c; }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  body {
    padding-top: 70px;
  }

  .header {
    height: 70px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    width: 55px;
  }

  .brand-top {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .brand-bottom {
    font-size: 10px;
    letter-spacing: 4px;
  }
.brand-tagline {
  font-size: 6px;
}
  .line {
    width: 20px;
  }

  .menu-icon {
    font-size: 22px;
  }

  .nav-menu.show {
    top: 70px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .slider-container {
    height: 40vh;
  }

  .youtube-container iframe {
    height: 200px;
  }
  .footer-contact {
    padding: 15px 12px;
  }

  .footer-contact h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  /* IMPORTANT FIX */
  .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;   /* Align icon to top of text */
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-align: left;          /* Make text align properly */
    max-width: 90%;
    margin: 0 auto 10px auto;
  }

  .footer-contact .contact-item i {
    flex-shrink: 0;            /* Prevent icon from moving */
    margin-top: 3px;           /* Small vertical alignment fix */
  }
}
/* ================= DESKTOP NAVBAR FIX (FINAL) ================= */
@media (min-width: 789px) {

  /* ❌ Hide hamburger */
  .menu-icon {
    display: none !important;
  }

  /* 🔥 CHANGE GRID → FLEX (IMPORTANT FIX) */
  .nav-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
  }

  /* ✅ Show navbar */
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    gap: 40px;
    position: static;
    background: transparent;
    box-shadow: none;
  }

    /* Remove underline */
.nav-menu a {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Increase size */
.nav-menu a {
  font-size: 20px;
  font-weight: 600;
}
  }
/* ================= CENTERED DESKTOP LAYOUT ================= */
@media (min-width: 769px) {

  /* Center ALL sections */
  .hero,
  .intro,
  .featured-products,
  .youtube-section,
  .page-content {
    max-width: 769px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Keep header aligned with content */
  .nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Add spacing between sections */
  .hero,
  .intro,
  .featured-products,
  .youtube-section {
    margin-top: 40px;
  }

  /* Make images look premium */
  .hero img {
    border-radius: 12px;
  }

  /* Improve text readability */
  .intro-text {
    font-size: 20px;
    line-height: 1.8;
  }
}
