/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
}

img, video {
  display: block;
}

section {
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  letter-spacing: 3px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .logo {
    font-size: 13px;
  }
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: white;
  font-weight: 300;
  letter-spacing: 4px;
}

.hero p {
  font-weight: 200;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-top: 16px;
  letter-spacing: 2px;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-top: 30px;
}

/* ===== FAMILY SECTION ===== */
.family {
  background: #000;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.family-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.family-image-card {
  position: relative;
  display: flex;
  justify-content: flex-start;
  min-height: 600px;
}

.est-tag {
  position: absolute;
  top: -30px;
  left: 0;
  color: #d4af37;
  font-style: italic;
  font-size: 1.2rem;
  z-index: 5;
}

.main-image {
  width: 85%;
  height: 600px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transition: transform 0.8s ease;
}

.overlay-wrapper {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  height: 320px;
  overflow: hidden;
  border: 8px solid #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  z-index: 3;
}

.overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.family-content-card {
  padding: 10px 0 10px 40px;
}

.section-subtitle {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: block;
}

.family-content-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
}

.family-content-card p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.family-cta {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 8px;
  transition: all 0.4s ease;
  display: inline-block;
}

.family-cta:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .family-container {
    gap: 50px;
  }
  .main-image {
    height: 500px;
  }
  .overlay-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .family {
    padding: 80px 0 100px;
  }
  .family-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
  }
  .family-image-card {
    min-height: unset;
    margin-bottom: 80px;
  }
  .main-image {
    width: 100%;
    height: 380px;
  }
  .overlay-wrapper {
    width: 55%;
    height: 200px;
    bottom: -40px;
    right: 0;
  }
  .family-content-card {
    padding: 10px 0;
  }
}

/* ===== PREMIUM EXPLORE WINES — FULLY REWORKED ===== */
.premium-explore {
  background: #000;
  padding: 100px 0;
}

.explore-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

/* Wine Slider Card */
.wine-slider-card {
  background: #111;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.wine-slider-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* Wine image display */
.wine-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.wine-bottle {
  width: auto;
  height: 320px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wine-info {
  color: #fff;
  text-align: center;
}

.wine-name {
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 6px;
}

.wine-type {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.wine-price {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 600;
  margin-top: 4px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: #d4af37;
  border-color: #d4af37;
}

.nav-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #d4af37;
}

.all-wines-cta {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  margin-top: 4px;
}

.all-wines-cta:hover {
  color: #fff;
}

/* Lifestyle image */
.lifestyle-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 620px;
  overflow: hidden;
  border-radius: 16px;
}

.lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 1100px) {
  .explore-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .explore-container {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .lifestyle-image {
    aspect-ratio: 4/3;
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .premium-explore {
    padding: 70px 0;
  }
  .explore-container {
    padding: 0 20px;
    max-width: 100%;
  }
  .wine-slider-card {
    padding: 30px 24px 28px;
  }
  .wine-bottle {
    height: 240px;
  }
  .wine-slider-card h2 {
    margin-bottom: 20px;
  }
  .lifestyle-image {
    aspect-ratio: 4/3;
  }
}

/* ===== INSTAGRAM ===== */
.instagram {
  background: #000;
  padding: 100px 5%;
  text-align: center;
}

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

.instagram-icon1 {
  width: 32px;
  height: 32px;
  color: #d4af37;
  margin: 0 auto 16px;
  display: block;
}

.instagram h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
}

.instagram-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.instagram-item {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #111;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease;
  will-change: transform, opacity;
}

.instagram-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.instagram-item:nth-child(1).visible { transition-delay: 0.1s; }
.instagram-item:nth-child(2).visible { transition-delay: 0.2s; }
.instagram-item:nth-child(3).visible { transition-delay: 0.3s; }
.instagram-item:nth-child(4).visible { transition-delay: 0.4s; }

.instagram-item:hover {
  transform: scale(1.03) !important;
}

.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: 0.3s;
}

.instagram-item:hover .play-btn {
  opacity: 1;
}

@media (max-width: 900px) {
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .instagram {
    padding: 70px 4%;
  }
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }
}

/* ===== VISIT ===== */
.visit {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 120px 0;
}

.visit-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.visit-menu-panel {
  text-align: center;
  margin-bottom: 60px;
}

.visit-menu-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: #fff;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 2px;
}

.visit-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.visit-menu-item {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
}

.visit-menu-item span {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.4s ease;
}

.visit-menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: #d4af37;
  transition: transform 0.4s ease;
}

.visit-menu-item.active span,
.visit-menu-item:hover span {
  color: #d4af37;
}

.visit-menu-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

.visit-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.visit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visit-content:hover .visit-image {
  transform: scale(1.04);
}

.visit-text-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
  padding: 50px 50px 40px;
}

.visit-description {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: #fff;
  margin-bottom: 25px;
  max-width: 650px;
  font-weight: 300;
}

.visit-cta {
  color: #d4af37;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid #d4af37;
  padding: 14px 36px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.visit-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.4s ease;
  z-index: -1;
}

.visit-cta:hover {
  color: #000;
}

.visit-cta:hover::before {
  left: 0;
}

@media (max-width: 768px) {
  .visit {
    padding: 80px 0;
  }
  .visit-container {
    padding: 0 20px;
  }
  .visit-menu {
    gap: 20px;
  }
  .visit-content {
    height: 420px;
  }
  .visit-text-content {
    padding: 30px 24px 28px;
  }
}

@media (max-width: 480px) {
  .visit-menu {
    gap: 12px;
  }
  .visit-menu-item span {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .visit-content {
    height: 340px;
  }
}

/* ===== STORIES ===== */
.stories {
  background: #000;
  padding: 120px 0;
}

.stories-header {
  text-align: center;
  margin-bottom: 70px;
}

.stories-header .subtitle {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 15px;
}

.stories-heading {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  color: #fff;
  font-weight: 400;
}

.stories-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 40px;
}

.story-left {
  margin-top: 60px;
}

.story-right {
  margin-top: -20px;
}

.story-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.story-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.15, 0.75, 0.5, 1);
}

.story-card:hover .story-image {
  transform: scale(1.06);
}

.story-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  padding: 5px 12px;
  font-size: 0.7rem;
  color: #d4af37;
  letter-spacing: 1px;
}

.story-title {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-bottom: 12px;
  color: #fff;
  font-weight: 400;
}

.story-excerpt {
  color: #ccc;
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.7;
  font-weight: 300;
}

.read-more {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 5px;
  transition: 0.3s ease;
}

.read-more:hover {
  color: #fff;
  border-bottom-color: #fff;
  padding-left: 8px;
}

@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }
  .story-left,
  .story-right {
    margin: 0;
  }
  .story-image {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .stories {
    padding: 70px 0;
  }
  .stories-grid {
    padding: 0 16px;
    gap: 40px;
  }
  .story-image {
    height: 280px;
  }
}

/* ===== WINE PROFILE ===== */
.wine-profile {
  padding: 120px 5%;
  background: #0a0a0a;
  color: #fff;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profile-text .subtitle {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: block;
}

.profile-text h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 20px;
  color: #fff;
  font-weight: 400;
}

.profile-text p {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.bar-item {
  margin-bottom: 28px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.bar-bg {
  height: 2px;
  background: rgba(255,255,255,0.1);
  width: 100%;
  position: relative;
}

.bar-fill {
  height: 100%;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.profile-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-box {
  background: #111;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

.feature-box:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}

.feature-box h3 {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 400;
}

.feature-box p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 900px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .wine-profile {
    padding: 70px 5%;
  }
  .feature-box {
    padding: 28px 24px;
  }
}

/* ===== FOOTER ===== */
/* .footer {
  background: #111;
  padding: 80px 8%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
} */

/* .footer input {
  width: 100%;
  padding: 12px;
  background: none;
  border: 1px solid #444;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
} */

.copy {
  text-align: center;
  margin-top: 40px;
  opacity: 0.5;
  font-size: 0.85rem;
}
/* 
@media (max-width: 768px) {
  .footer {
    padding: 60px 6%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
} */

@media (max-width: 768px) {
  .hero {
    height: 100svh; /* uses small viewport height on mobile browsers */
    width: 100vw;
  }

  .hero-video {
    width: 100vw;
    height: 100%;
    min-width: unset;
    min-height: unset;
    top: 0;
    left: 0;
    transform: none;
    object-fit: cover;
    object-position: 30% center; /* shifts focus toward the glass/pour area */
  }
}

