/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
   margin: 0;
    font-family: Arial, sans-serif;

    background:
        url('vinos/images/need.jpg'); /* your label image */

    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* nice effect */
}
.logo-text h1 {
     padding: 80px 20px;
    color: #2f7d32;
    text-align: center;
}


.menu-btn {
  font-size: 26px;
  cursor: pointer;
  color: #1b5e20;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  color: #1b5e20;
}

.logo img {
  width: 120px;
}

/* NAV */
.nav {
  display: none;
  flex-direction: column;
  text-align: center;
  background: #ffffff;
  position: absolute;
  top: 60px;
  width: 100%;
  left: 0;
}

.nav a {
  padding: 12px;
  text-decoration: none;
  color: #1b5e20;
  font-weight: 600;
}

.nav.active {
  display: flex;
}

/* DESKTOP NAV */
@media(min-width:768px) {

  .menu-btn {
    display: none;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    position: static;
    background: transparent;
    gap: 20px;
  }

}
.hero::before {
  background: rgba(255, 255, 255, 0.6); /* reduce overlay */
}


.vino-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 18px 45px;
  overflow: hidden;
  background: url('images/trans1.jpg') center center / cover no-repeat;
 
}

.vino-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 244, 235, 0.78);
}

.vino-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 200%;
}

.vino-hero-logo {
  width: 300px;
  max-width: 100%;
  margin: 0 auto 14px;
  display: block;
  border-radius: 10px;
}

.vino-hero h1 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #102b04;
  margin: 0 0 10px;
  
}

.vino-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #a91f09;
  margin-bottom: 18px;
}

.vino-desc {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: #226648;
  max-width: 90%;
  margin: 0 auto 28px;
  text-align: center;
}
.vino-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.vino-btn {
  width: 100%;
  max-width: 150px;
  padding: 11px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.3s ease;
  display: inline-block;
}

.vino-btn-green {
  background: #2f7d32;
  color: #fff;
}

.vino-btn-yellow {
  background: #2f7d32;
  color: #fff;
}

.vino-btn:hover {
  transform: translateY(-2px);
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .vino-hero {
    min-height: 580px;
    padding: 60px 24px;
  }

  .vino-hero-logo {
    width: 500px;
    margin-bottom: 18px;
  }

  .vino-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .vino-tagline {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .vino-desc {
    font-size: 26px;
    max-width: 85%;
    margin-bottom: 34px;
    line-height: 1.5;
  }

  .vino-hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .vino-btn {
    max-width: 240px;
    font-size: 22px;
    padding: 16px 28px;
  }
}
/* FOOTER */
.footer {
    position: relative;
    background: rgba(239, 248, 239, 0.8); /* green with transparency */
    color: #000;
    padding: 40px 20px;
    overflow: hidden;
   

}

/* Background image layer */
.footer::before {
   body::before {
    content: "";
    position: relative;
    width: 100%;
    height: 100%;
    background: url('images/need.jpg');
    opacity: 0.3;
    z-index: -1;              /* 🔥 KEY FIX */
    pointer-events: none;     /* 🔥 EXTRA SAFETY */
}
}
/* 🔥 FORCE BACKGROUND TO STAY BEHIND */
body::before,
body::after {
    pointer-events: none !important;
    z-index: -1 !important;
}

footer a {
    position: relative;
    z-index: 9999;
    display: inline-block;
}
/* 🔥 ENSURE CONTENT IS CLICKABLE */
footer, 
footer * {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Make content stay above image */
.footer-content {
    position: relative;
    z-index: 1;
}

/* CONTAINER */
.footer-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* TEXT LEFT ALIGN */
.footer,
.footer-container {
  text-align: left;
}

/* BRAND */
.footer-brand h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.footer-brand p {
  font-size: 17px;
  color: #03400c;
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #03400c;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #ffd60a;
}

/* CONTACT */
.footer-contact p {
  font-size: 8px;
  margin: 8px 0;
  color: #03400c;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 20px;
  font-size: 10px;
  color: #03400c;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* REMOVE ANY BROKEN GLOBAL IMAGE RULES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FIX CAROUSEL */
.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}
.header {
  background: #4CAF50;
  color: white;
  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* LEFT MENU */
.menu {
  position: absolute;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* CENTER TITLE */
.title {
  font-size: 20px;
  font-weight: bold;
}

/* RIGHT LOGO */
.right-logo {
  position: absolute;
  right: 15px;
}

.right-logo img {
  height: 30px;   /* adjust size */
  background-color: #ebf1ec;
}
.why-choose {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.why-choose h2 {
    font-size: 34px;
    color: #0b3d2e;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-list {
    list-style: none;
    max-width: 750px;
    margin: auto;
    padding: 0;
    text-align: left;
}

.why-list li {
    font-size: 17px;
    line-height: 1.7;
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    color: #0b3d2e;
    font-size: 18px;
    font-weight: bold;
}

.why-list li strong {
    color: #0b3d2e;
}
.hero {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT OVER IMAGE */
.hero-content {
    position: absolute;
    top: 55%;   /* adjust based on your image */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

/* MAIN TITLE */
.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b3d0b;
    margin-bottom: 15px;
}

/* MULTILINGUAL LINE */
.tagline {
    font-size: 15px;
    font-weight: 500;
    color: #1f5c3f;
    line-height: 1.6;
}

/* SEPARATORS */
.tagline span {
    color: #c9a66b;
    margin: 0 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }

    .tagline {
        font-size: 14px;
    }

    .hero-content {
        top: 60%;
    }
}