* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  height: 70vh;
  background: url("images/7.jpeg") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 20px;
  }
}

/* TABS */
.stories-section {
  background: #fff;
  color: #000;
  padding: 80px 8%;
}

.tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.tab {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding-bottom: 5px;
}

.tab.active {
  border-bottom: 2px solid #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .stories-section {
    padding: 60px 4%;
  }
  
  .tabs {
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .tab {
    font-size: 0.9rem;
  }
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card img {
  width: 100%;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .card h3 {
    font-size: 1rem;
  }
}

/* NEWSLETTER */
.newsletter {
  background: #000;
  padding: 80px 8%;
}

.newsletter form {
  display: flex;
  max-width: 400px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  background: none;
  border: 1px solid #555;
  color: #fff;
}

.newsletter button {
  padding: 10px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .newsletter {
    padding: 60px 4%;
  }
  
  .newsletter form {
    max-width: 100%;
  }
}

/* FOOTER */
.footer {
  background: #111;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.copy {
  grid-column: span 2;
  margin-top: 40px;
  opacity: 0.6;
  text-align: center;
}
/* EVENTS GRID STYLING */
#events .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.card {
 /* background: #111;*/
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

.card-image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image-wrapper img {
  transform: scale(1.1);
}
.card1 {
   background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.card1:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

.event-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d4af37;
  color: #000;
  padding: 5px 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body {
  padding: 30px;
}

.event-date {
  color: #d4af37;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.card-body p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 3px;
  transition: 0.3s;
}

.read-more:hover {
  color: #d4af37;
  padding-left: 5px;
}

@media (max-width: 768px) {
  #events .grid {
    grid-template-columns: 1fr;
  }
}
/* Unique Wine Selection Styling */
.wine-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 5rem 2rem;
  /* background-color: #080808; */
}

.product-item {
  /* background: #0f0f0f; */
  border: 1px solid rgba(198, 167, 94, 0.1); /* Subtle gold border */
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}

.product-item:hover {
  transform: translateY(-12px);
  border-color: #c6a75e; /* var(--gold) */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); */
}

.product-visual {
  padding: 3rem 2rem;
  /* background: radial-gradient(circle, #1a1a1a 0%, #0f0f0f 100%); */
  display: flex;
  justify-content: center;
}

.product-visual img {
  max-width: 100%;
  height: auto;
  /* filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8)); */
}

.product-details {
  padding: 2.5rem;
}

.wine-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c6a75e; /* var(--gold) */
  margin-bottom: 1rem;
}

.product-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.product-details p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.7;
  font-weight: 300;
}
/* Ensure the link covers the whole card without blue text or underlines */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Important: makes the anchor take up the full space */
    height: 100%;
}

/* Add a professional hover effect to make it attractive */
.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-10px); /* Lifts the card slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Adds a soft shadow */
}

/* Optional: Slight zoom on the bottle image when hovering */
.product-item:hover .product-visual img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}
/*tours*/
