* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  background: #000;
  color: #fff;
}

/* FIXED HEADER */
.fixed-header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.brand-name {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
}

/* NAVIGATION STYLES */
:root { --primary-gold: #d4af37; }

.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    padding: 25px 60px; transition: all 0.4s ease;
    background: rgba(0,0,0,0.1); backdrop-filter: blur(10px);
}

.logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    font-size: 16px; font-weight: 600; letter-spacing: 3px;
    color: #fff; text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 25px; margin-left: auto; }

.cart-icon {
    position: relative; color: #fff; cursor: pointer;
    display: flex; align-items: center; gap: 8px;
}

.cart-count {
    background: var(--primary-gold); color: #000;
    border-radius: 50%; width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600;
}

.menu-toggle {
    display: flex; flex-direction: column; gap: 4px; cursor: pointer;
    width: 24px; height: 18px; justify-content: center;
}

.menu-toggle span {
    width: 100%; height: 2px; background: #fff;
    transition: all 0.3s ease; transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); z-index: 999;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

.menu-content {
    display: flex; height: 100%; max-width: 1400px; margin: 0 auto;
}

.menu-left {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; align-items: center; padding: 60px;
}

.menu-left img {
    width: 100%; max-width: 500px; height: 60vh;
    object-fit: cover; border-radius: 8px;
    transition: opacity 0.3s ease;
}

.menu-right {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 60px; overflow-y: auto;
}

.nav-menu { list-style: none; }

.nav-menu li { margin-bottom: 30px; }

.menu-label {
    display: block; font-size: 10px; letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4); margin-bottom: 8px;
    font-weight: 500;
}

.nav-menu a {
    font-size: 64px; font-weight: 300; color: #fff;
    text-decoration: none; line-height: 1.1;
    transition: all 0.4s ease; display: block;
    transform: translateY(30px); opacity: 0;
}

.menu-overlay.active .nav-menu li:nth-child(1) a { animation: slideUp 0.6s ease forwards; animation-delay: 0.1s; }
.menu-overlay.active .nav-menu li:nth-child(2) a { animation: slideUp 0.6s ease forwards; animation-delay: 0.2s; }
.menu-overlay.active .nav-menu li:nth-child(3) a { animation: slideUp 0.6s ease forwards; animation-delay: 0.3s; }
.menu-overlay.active .nav-menu li:nth-child(4) a { animation: slideUp 0.6s ease forwards; animation-delay: 0.4s; }
.menu-overlay.active .nav-menu li:nth-child(5) a { animation: slideUp 0.6s ease forwards; animation-delay: 0.5s; }

@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }

.nav-menu a:hover {
    color: var(--primary-gold);
    transform: translateX(20px);
}

@media (max-width: 1024px) {
    .navbar { padding: 20px 40px; }
    .menu-content { flex-direction: column; overflow-y: auto; padding-top: 100px; }
    .menu-left { display: none; }
    .menu-right { padding: 40px; justify-content: flex-start; }
    .nav-menu a { font-size: 48px; }
}

@media (max-width: 768px) {
    .navbar { justify-content: space-between; padding: 20px; }
    .logo { position: static; transform: none; }
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/4.jpeg") center/cover;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-overlay h1 {
    color: white;
 
}

.hero h1 {
  font-size: 4rem;
}

/* INTRO GRID */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 100px 8%;
}

.img-box img {
  width: 100%;
}

.img-box.wide {
  grid-column: span 2;
}

.text-box h2 {
  font-size: 2rem;
  line-height: 1.4;
}

/* TABS */
.tabs-section {
  background: #fff;
  color: #000;
  padding: 80px 8%;
}

.tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.tab {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.tab.active {
  border-bottom: 2px solid #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.two-col img {
  width: 100%;
}

.small {
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* TASTING ROOM */
.tasting-room {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dark-box {
  padding: 100px;
  background: #111;
}

/* ADVENTURE */
.adventure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 8%;
}

.adventure img {
  width: 100%;
}

/* REGION */
.region {
  text-align: center;
  padding: 100px 8%;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 40px;
}

/* FOOTER */
.footer {
  background: #111;
  padding: 60px 8%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer input {
  width: 100%;
  padding: 10px;
  background: none;
  border: 1px solid #444;
  color: #fff;
}

copyright {
  text-align: center;
}

/* SLIDER */
.slider {
  padding: 0;
}

.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* PREMIUM SPLIT SECTION */
.premium-split {
  background: linear-gradient(135deg, #000 0%, #111 100%);
  padding: 120px 0;
}

.split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.image-card {
  position: relative;
}

.adventure-slide {
  display: none;
}

.adventure-slide.active {
  display: block;
}

.image-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
}

.image-overlay h3 {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.image-overlay p {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.learn-more {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.learn-more:hover {
  opacity: 1;
}

.nav-button {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.content-area {
  padding-left: 40px;
  position: relative;
  overflow: hidden;
}

.content-slide {
  display: none;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.content-slide.active {
  display: block;
  transform: translateX(0);
}

.subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 20px;
  display: block;
}

.content-area h2 {
  font-family: 'Georgia', serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.content-area p {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  text-align: right;
}

@media (max-width: 768px) {
  .split-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }
  
  .content-area {
    padding-left: 0;
  }
  
  .content-area p {
    text-align: left;
  }
  
  .content-area h2 {
    font-size: 36px;
  }
}

/* LUXURY EDITORIAL SECTION */
.luxury-editorial {
  background: #000;
  padding: 120px 0;
}

.editorial-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: flex-start;
}

.main-image-area {
  position: relative;
  height: 700px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-image {
  position: absolute;
  bottom: -60px;
  right: -400px;
  width: 700px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 2;
}

.editorial-content {
  padding: 80px 80px 0 80px;
  color: #fff;
}

.brand-label {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 40px;
  display: block;
}

.editorial-heading {
  font-family: 'Georgia', serif;
  font-size: 56px;
  line-height: 1.1;
  font-weight: normal;
  margin: 0;
}

@media (max-width: 768px) {
  .editorial-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .main-image-area {
    height: 500px;
  }
  
  .overlay-image {
    position: static;
    width: 100%;
    height: 200px;
    margin-top: 20px;
  }
  
  .editorial-content {
    padding: 0 20px;
  }
  
  .editorial-heading {
    font-size: 36px;
  }
}

/* LUXURY TASTING EXPERIENCE */
.luxury-tasting {
  background: #000;
  padding: 120px 0;
}

.tasting-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.tasting-tab {
  background: none;
  border: none;
  color: #888;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.tasting-tab.active {
  color: #000;
  background: #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

.tasting-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.tasting-content {
  padding: 80px 60px;
  color: #000;
}

.tasting-label {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 20px;
  display: block;
}

.tasting-heading {
  font-family: 'Georgia', serif;
  font-size: 42px;
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}

.tasting-description {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
  transition: opacity 0.3s ease;
}

.tasting-price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}

.tasting-cta {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #888;
}

.tasting-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #666;
}

.tasting-image {
  position: relative;
  overflow: hidden;
  /* height: 400px; */
  padding: 50px;
}

.tasting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .tasting-tabs {
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .tasting-card {
    grid-template-columns: 1fr;
    margin: 0 20px;
  }
  
  .tasting-content {
    padding: 60px 40px;
  }
  
  .tasting-heading {
    font-size: 32px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 30px;
  }
  
  .text-box h2 {
    font-size: 1.5rem;
  }
  
  .tabs-section {
    padding: 60px 5%;
  }
  
  .tabs {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tasting-room {
    grid-template-columns: 1fr;
  }
  
  .dark-box {
    padding: 60px 40px;
  }
  
  .adventure {
    grid-template-columns: 1fr;
    padding: 60px 5%;
    gap: 40px;
  }
  
  .region {
    padding: 60px 5%;
  }
  
  .region-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
  }
  
  .footer {
    padding: 40px 5%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .slider-container {
    height: 60vh;
  }
  
  .slide img {
    height: 60vh;
  }
  
  .tasting-image {
    height: 300px;
  }
}

/* BOTTOM PREMIUM HERO SECTION */
.bottom-premium-hero {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bottom-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 70vh;
}

.bottom-hero-image {
  position: relative;
  overflow: hidden;
}

.bottom-lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bottom-lifestyle-image:hover {
  transform: scale(1.05);
}

.bottom-hero-content {
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  color: #fff;
}

.bottom-hero-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 30px;
}

.bottom-hero-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: normal;
  margin-bottom: 40px;
  line-height: 1.1;
}

.bottom-hero-divider {
  width: 60px;
  height: 1px;
  background: #444;
  margin-bottom: 40px;
}

.bottom-hero-info {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.bottom-hero-info p {
  margin-bottom: 20px;
}

.bottom-hero-address {
  color: #888;
  font-size: 13px;
}

.bottom-hero-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 30vh;
  gap: 2px;
}

.bottom-hero-landscape,
.bottom-hero-interior {
  position: relative;
  overflow: hidden;
}

.bottom-landscape-image,
.bottom-interior-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bottom-landscape-image:hover,
.bottom-interior-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .bottom-premium-hero {
    min-height: auto;
  }
  
  .bottom-hero-top {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .bottom-hero-content {
    padding: 60px 30px;
    order: -1;
  }
  
  .bottom-hero-title {
    font-size: 42px;
  }
  
  .bottom-hero-image {
    height: 50vh;
  }
  
  .bottom-hero-bottom {
    grid-template-columns: 1fr;
    height: auto;
    gap: 2px;
  }
  
  .bottom-hero-landscape,
  .bottom-hero-interior {
    height: 30vh;
  }
}

/* NEW WINE REGION SECTION */
.new-wine-region {
  background: #000;
  padding: 120px 0;
  text-align: center;
}

.region-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.region-title {
  font-family: inherit;
  font-size: 48px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: normal;
}

.region-divider {
  width: 60px;
  height: 1px;
  background: #d4af37;
  margin: 0 auto 60px;
}

.region-destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.destination-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.destination-item:hover {
  transform: translateY(-5px);
}

.destination-item:hover .location {
  color: #d4af37;
}

.destination-item:hover .travel-time::after {
  width: 100%;
}

.location {
  font-family: inherit;
  font-size: 16px;
  color: #ccc;
  transition: color 0.3s ease;
}

.travel-time {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}

.travel-time::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .new-wine-region {
    padding: 80px 0;
  }
  
  .region-container {
    padding: 0 20px;
  }
  
  .region-title {
    font-size: 36px;
  }
  
  .region-destinations {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* --- INTERACTIVE SPLIT SHOWCASE --- */
.showcase-wrap {
  width: 100%;
  height: 90vh; /* Nearly full screen */
  background: #000;
  overflow: hidden;
}

.showcase-container {
  display: flex;
  height: 100%;
  width: 100%;
}

.showcase-panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brightness overlay */
.showcase-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 100%);
  z-index: 1;
  transition: 0.5s;
}

/* Expansion Effect */
.showcase-panel:hover {
  flex: 2.5; /* This panel grows wider */
}

.showcase-panel:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.panel-content {
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0.6;
  transition: 0.6s all ease;
}

.showcase-panel:hover .panel-content {
  transform: translateY(0);
  opacity: 1;
}

.panel-tag {
  color: #c6a75e; /* Gold */
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.panel-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin: 1rem 0;
}

.panel-content p {
  color: #ccc;
  max-width: 400px;
  margin-bottom: 2rem;
  display: none; /* Hidden until hover for a cleaner look */
}

.showcase-panel:hover p {
  display: block;
}

.panel-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #c6a75e;
  padding-bottom: 5px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .showcase-container {
    flex-direction: column;
  }
  .showcase-panel {
    height: 33.33vh;
    padding: 2rem;
  }
  .showcase-panel:hover {
    flex: 1.5;
  }
}