/* ==========================================================================
   Homepage Specific Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
  display: flex;
  height: calc(100vh - 120px);
  min-height: 500px;
  background-color: var(--bg-cream);
  overflow: hidden;
  position: relative;
  margin: 0 32px 30px;
}

.hero-slide-left {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--bg-cream-dark);
}

.hero-slide-left .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: opacity 0.5s ease;
  background: linear-gradient(to top, rgba(64, 14, 0, 0.4) 0%, rgba(64, 14, 0, 0.1) 60%, rgba(64, 14, 0, 0.2) 100%);
}

.hero-slide-left .hero-img-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.hero-slide-left:hover .hero-img-container {
  filter: grayscale(0%);
}

.hero-slide-left h1 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-slide-left p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--neutral-100);
  margin-bottom: 0;
}

.hero-slide-right {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  width: 600%; /* 6 slides */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide {
  flex-shrink: 0;
  width: 16.6666%; /* 1/6th width */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(64, 14, 0, 0.6) 0%, rgba(64, 14, 0, 0.1) 60%, rgba(64, 14, 0, 0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 10;
  color: var(--text-light);
}

.hero-content h2 {
  font-family: var(--font-serif);
  font-size: 44px; /* Scaled slightly down to fit split hero, matching mockup! */
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.hero-explore {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.hero-explore i {
  margin-left: 20px;
  transition: margin-left 0.3s ease;
}

.hero-explore:hover i {
  margin-left: 8px;
}

.hero-explore:hover {
  opacity: 0.85;
  border-bottom: 1px solid var(--text-light);
}

/* Slider progress scrollbar positioned below h2 and above explore link */
.hero-slider-scrollbar {
  position: relative;
  width: 180px;
  margin: 15px 0 25px 0;
  z-index: 10;
}

.hero-scrollbar-track {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 16.6666%; /* 1/6th of width */
  height: 100%;
  background-color: var(--text-light);
  transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hero Slide Indicators */
.hero-indicators {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

.hero-indicator-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator-item.active {
  color: var(--text-light);
  font-weight: 700;
  font-size: 20px; /* Make active indicator larger */
  transform: scale(1.15);
}

/* Marquee / Ticker */
.ticker-wrap {
  margin: 25px auto;
  width: calc(100% - 64px); /* 32px margin on left and right */
  box-sizing: border-box;
  overflow: hidden;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-animation 20s linear infinite; /* Faster speed */
}

.ticker__item {
  display: inline-block;
  padding: 0 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-500);
}

.ticker__item i {
  font-size: 8px;
  color: var(--primary-500);
  vertical-align: middle;
  margin-right: 12px;
}

@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); } /* Runs right to left */
}

/* About Intro Section */
.about-intro-section {
  background-color: var(--primary-400);
  color: var(--text-light);
  padding: 32px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-intro-left h2 {
  color: var(--neutral-1000);
  margin-bottom: 20px;
  max-width: 660px;
}
.home-about{
  padding-bottom: 80px;
}
.home-about h2{
  color: var(--text-light);
  max-width: 320px;
  letter-spacing: .3;
  font-size: 64px;
}

.about-intro-left p {
  color: var(--neutral-800);
  margin-bottom: 20px;
  max-width: 660px;
}
.home-about p{
  color: var(--neutral-200);
  padding-bottom: 20px;
}

.about-intro-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}

/* Signature Curations Section Base */
.curations-section {
  padding: 40px 0;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.curations-layout-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: flex-start;
}

.curations-left-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
}

.curations-title-block h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--neutral-800);
}

.curations-title-block p {
  color: var(--neutral-600);
  font-size: 16px;
}

/* Slider Section Viewport */
.curations-slider-container {
  position: relative;
  width: 100%;
  min-width: 0; 
}

.curations-slider {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 25px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.curations-slider::-webkit-scrollbar {
  display: none;
}

.curations-slider.dragging {
  cursor: grabbing;
}

.curations-slider-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  width: max-content;
}

/* Individual Cards */
.curation-card {
  flex: 0 0 280px; 
  width: 280px;
  background-color: var(--bg-cream);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  user-select: none;
  -webkit-user-select: none;
  padding-right: 30px; 
  border-right: 1px solid rgba(0, 0, 0, 0.1); 
}

.curation-card * {
  pointer-events: none;
}

.curation-card:last-child {
  border-right: none;
  padding-right: 0;
}

.curation-card:hover {
  transform: translateY(-5px);
}

.curation-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.curation-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curation-info {
  padding: 20px 0 0 0;
}

.curation-info h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--neutral-1000);
}

.curation-info p {
  color: var(--neutral-800);
  font-size: 14px;
}

/* Scroll Progress Tracker */
.slider-scrollbar-track {
  width: 100%;
  max-width: 400px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 20px;
}

.slider-scrollbar-thumb {
  height: 100%;
  width: 15%;
  background-color: var(--primary-500);
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.05s ease-out;
}

.desktop-cta {
  display: inline-block;
}

.mobile-cta {
  display: none;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-400);
  color: var(--text-light);
  padding: 40px;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.testimonials-left {
  height: 459px;
  position: relative;
  width: 196px;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 56px;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 60px;
}

.testimonial-curve-desktop {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.testimonial-curve-mobile {
  display: none;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.testimonial-nav-item {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  cursor: pointer;
}

.testimonial-nav-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-nav-item.pos-left {
  top: 60px;
  left: 100px;
}

.testimonial-nav-item.pos-center {
  top: 230px;
  left: 165px;
  transform: translateY(-50%);
}

.testimonial-nav-item.pos-center img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-nav-item.pos-right {
  top: 400px;
  left: 100px;
  transform: translateY(-100%);
}

.testimonial-nav-info {
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  white-space: nowrap;
}

.testimonial-nav-info h4 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 2px;
}

.testimonial-nav-info p {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--neutral-300);
}

/* Testimonial Right Quote Section */
.testimonials-right {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 100px;
}

.quote-icon {
  font-size: 80px;
  font-family: Georgia, serif;
  position: absolute;
  top: -50px;
  left: -40px;
  line-height: 1;
}

.testimonial-quote-box {
  min-height: 180px;
  position: relative;
  z-index: 2;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-light);
  letter-spacing: .2px;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.testimonial-quote::first-letter {
  font-size: 3.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  line-height: 0.85;
  margin-right: 6px;
  margin-top: 4px;
  float: left;
}

.testimonial-quote.active {
  display: block;
  opacity: 1;
}

.testimonial-arrows {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text-light);
  width: 72px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 20px;
}

.testimonial-arrow:hover {
  background-color: var(--text-light);
  color: var(--primary-500);
}

/* Gallery Intro Section */
.gallery-intro-section {
  padding: 32px 0;
  background-color: var(--bg-cream);
}

.gallery-intro-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.gallery-intro-header .h2-style{
  color: var(--neutral-1000);
}
.gallery-peek-link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-peek-link:hover {
  color: var(--primary-500);
  border-bottom: 1px solid var(--primary-500);
}

/* Gallery Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1.1fr;
  gap: 20px;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.mobile-peek-btn-wrapper {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Proportional scale without distortion */
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.moment-dog { height: 100%; }
.gallery-item-row .gallery-item { height: 220px; }
.moment-interior { height: 310px; }
.moment-couple { height: 310px; }
.moment-wine { height: 370px; }
.moment-drink { height: 250px; }

/* Contact and Opening Hours Section */
.contact-section {
  padding: 32px 0;
  background-color: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr; /* Map section (1.3fr) is bigger than content section (1fr) */
  gap: 80px;
  align-items: flex-start;
}

.contact-left h2 {
  margin-bottom: 15px;
}

.contact-desc {
  color: var(--neutral-600);
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-col-title {
  font-family: var(--font-sans);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--primary-500);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(64, 14, 0, 0.2);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: var(--primary-500);
  line-height: 1.4;
}

.contact-list-item img {
  width: 18px;
  height: auto;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list-item i {
  color: var(--primary-300);
  margin-top: 3px;
  font-size: 14px;
}

.contact-right-map {
  width: 100%;
  height: 550px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-right-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.follow-us-block {
  margin-top: 20px;
}

.follow-us-block h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--primary-500);
  margin-bottom: 15px;
}

.social-circle-links {
  display: flex;
  gap: 15px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--neutral-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.3s;
}

.social-circle-btn:hover {
  background-color: var(--primary-500);
  color: #ffffff;
  border-color: var(--primary-500);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro-section {
    padding: 60px 0;
  }

  .curations-layout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .curations-title-block h2 {
    font-size: 36px;
  }

  .curation-card {
    flex: 0 0 270px;
    width: 270px;
    padding-right: 10px;
  }

  .curations-slider-inner {
    gap: 10px;
  }
  
  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-block;
    margin-top: 30px;
    width: fit-content;
  }

  /* Testimonials Responsive Layout */
  .testimonials-section{
    padding: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
  }

  .testimonials-left {
    height: 140px;
    display: block;
    position: relative;
    padding-left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .testimonial-curve-desktop {
    display: none;
  }

  .testimonial-curve-mobile {
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115%;
    max-width: 500px;
    height: auto;
  }

  .testimonial-nav-item {
    flex-direction: column;
    text-align: center;
    position: absolute;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .testimonial-nav-item.pos-left {
    top: 55px;
    left: calc(12% - 40px);
    transform: none;
  }

  .testimonial-nav-item.pos-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .testimonial-nav-item.pos-right {
    top: 55px;
    left: auto;
    right: calc(12% - 40px);
    transform: none;
  }

  .testimonial-nav-item .testimonial-nav-info {
    position: absolute;
    top: 75px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .testimonial-nav-item.pos-center .testimonial-nav-info {
    opacity: 1;
    visibility: visible;
  }

  .testimonial-nav-item.pos-center .testimonial-nav-info h4 {
    text-align: center;
    font-size: 16px;
  }

  .testimonial-nav-item.pos-center .testimonial-nav-info p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
  }

  .testimonials-right {
    position: relative;
    margin-top: 0;
    padding-top: 25px;
  }

  .quote-icon {
    font-size: 50px;
    position: absolute;
    top: -10px;
    left: -15px;
    display: block;
    line-height: 1;
  }

  .testimonial-quote {
    font-size: 16px;
    text-align: center;
  }

  .testimonial-quote::first-letter {
    font-size: 2.8rem;
    line-height: 1;
    margin-right: 0px;
    float: none;
    display: inline;
  }

  .testimonial-arrows {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-right-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 400px;
    margin: 0 0 20px;
    width: 100%;
  }

  .hero-slide-left {
    display: none;
  }

  .hero-slide-right {
    flex: 0 0 100%;
    width: 100%;
  }

  .hero-slider-scrollbar {
    display: none; /* Hide progress bar on mobile */
  }

  .hero-indicators {
    right: 20px; /* Bring indicators closer to edge on mobile */
  }

  .hero-content {
    bottom: 30px;
    left: 20px;
    right: 20px;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  /* Full Bleed Layouts */
  .about-intro-section {
    padding: 60px 0 0;
  }
  
  .about-intro-section .container {
    padding: 0;
  }
  
  .about-intro-left {
    padding: 0 20px 0px;
  }
  
  .about-intro-right {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .about-intro-right img {
    width: 100%;
    display: block;
    border-radius: 0;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .gallery-col {
    gap: 20px;
  }
  
  .gallery-item-row {
    display: grid;
    grid-template-columns: 1fr !important; /* Stack vertically on mobile */
    gap: 20px;
  }
  
  .moment-dog,
  .gallery-item-row .gallery-item,
  .moment-interior,
  .moment-couple,
  .moment-wine,
  .moment-drink {
    height: auto !important;
    aspect-ratio: 4/3 !important; /* Uniform proportional height */
  }
}

@media (max-width: 576px) {
  .gallery-intro-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .gallery-intro-header .h2-style{
    font-size: 36px;
  }
  .gallery-intro-header .gallery-peek-link {
    display: none !important; /* Hide button inside the header on mobile */
  }
  .mobile-peek-btn-wrapper {
    display: flex !important;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
  }
  .mobile-peek-btn-wrapper .gallery-peek-link {
    display: inline-flex !important;
    color: var(--primary-500) !important;
    border-color: var(--primary-500) !important;
    font-size: 16px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .about-intro-left h2 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.3;
  }

  .about-intro-left p {
    margin-bottom: 20px;
  }

  .about-intro-right img {
    border-radius: 0;
    object-fit: contain;
  }
}