* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Manrope', sans-serif; */
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
@font-face {
  font-family: 'Carla Sans Light';
  src: url('fonts/carla-sans-light.woff2') format('woff2'),
    url('fonts/carla-sans-light.woff') format('woff');

  font-style: normal;
  font-display: swap;
}
p {
  font-family: sans-serif;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.container-wide {
  max-width: 1360px;
}
/* HERO BACKGROUND ANIMATION */
.header {
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/home-banner.jpg') no-repeat center/cover;
  z-index: 0;

  transform: scale(1.08);
  animation: heroZoom 8s ease-out forwards;
}

.header-sec {
  position: relative;
  z-index: 1;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.white-line {
  position: absolute;
  border: none;
  height: 1px;
  background: #fff;
  width: 100%;

  top: 53px;
}
.header-top {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 5px;
}

.top-right {
  display: flex;
  gap: 43px;
}
.div-space {
  display: flex;
  gap: 3px;
}
.top-right p {
  color: #fff;
  font-size: 11px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;

  background: #fff;
  min-width: 180px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;
  z-index: 999;
    
    margin-top: 10px;
}

.dropdown-content a {
    color: #b19359 !important;
}

.dropdown-content a::after {
    content: none !important;
}

/* links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #6b6760;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

/* hover effect */
.dropdown-content a:hover {
  background-color: #f5f0e6;
}

/* show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =====================================
   NAV HOVER UNDERLINE (TEXT LINKS ONLY)
===================================== */

.nav-left a,
.nav-right a {
  position: relative;
  text-decoration: none;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

.navbar a {
white-space: nowrap;

}


.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 115px;
}

.nav-left,
.nav-right {
  width: calc(50% - 170px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: auto;
  z-index: 2;
}

.nav-center img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.header-middle nav a {
  text-decoration: none;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 200;
    cursor: pointer;
    letter-spacing: 2px;
}
.header-middle {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 107px;
}
.mobile_nav nav a {
  text-decoration: none;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
}

.mobile_nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.overlay {
position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.mobile_nav.active .overlay {
  opacity: 1;
}

.header-btm {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-btm span {
  color: #fff;
}
.text-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.text-with-lines::before,
.text-with-lines::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
}
.header-btm h1 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  color: #fff;
  text-align: center;
  font-size: 43px;
  font-weight: 100;
  margin-top: 25px;
  max-width: 536px;
  width: 100%;
}
.header-btm p {
  text-align: center;
  color: #fff;
  margin-top: 16px;
  font-family: Manrope, sans-serif;
  letter-spacing: 3px;
}
.header-btm .hero-desc {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: normal;
  margin-top: 36px;
  padding-bottom: 225px;
}
.logo-white {
  padding: 0 20px;
}

.rooted-sec {
  background-image: url('images/Asset\ 3.png'), url('images/Asset\ 7.png');
  background-position: left center, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 13%;
  background-position: 60px center, calc(100% - 200px) calc(100% - -50px);
}
.sec-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 80px;
  padding-bottom: 80px;
  color: #6b6760;
  gap: 50px;
}
.sec-1-left {
  font-family: 'Carla Sans Light', Arial, sans-serif;
}
.sec-1-left h2 {
  font-size: 37px;
  padding-right: 20px;
  font-weight: 100;
}

.sec-1-right p:not(:last-child) {
  padding-bottom: 20px;
}
.sec-1-right p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 200;
}
.sec-1-p {
  padding-bottom: 42px;
}


/* =====================================
   SCROLL REVEAL ANIMATION
===================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* πιο διακριτικές διαφορετικές κατευθύνσεις */
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-left.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-right.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-zoom.reveal-active {
  opacity: 1;
  transform: scale(1);
}

/* μικρό delay options */
.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* για κινητά λίγο πιο απαλό */
@media (max-width: 768px) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(20px);
  }

  .reveal-zoom {
    transform: scale(0.98);
  }
}
/* =====================================
   BUTTON UPPERCASE + CLEAN FILL HOVER
===================================== */
button,
.btn,
a.button,
input[type='submit'],
.read-btn,
.discover-sec > button,
.newsletter button {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Read More button base */
.read-btn {
  display: inline-block;
  background-color: #fff;
  color: #b19359;
  text-decoration: none;
  padding: 18px 40px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #b19359;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* text above fill */
.read-btn span,
.read-btn {
  position: relative;
  z-index: 1;
}

/* fill effect */
.read-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #b19359;
  transition: width 0.35s ease;
  z-index: -1;
}

.read-btn:hover {
  color: #fff;
}

.read-btn:hover::before {
  width: 100%;
}

.sec-3 {
  text-align: center;
  color: #fff;
  padding: 140px 0;
}
.third-sec {
  background: url('images/bg-koilani-michaelides-winery.jpg') no-repeat center/cover;
}

.wines-section {
  text-align: center;
  padding: 50px 20px 170px 20px;
  color: #6b6760;
}

.wines-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.title-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.title-text .subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #7d7d7d;
  margin-bottom: 15px;
}

.title-text .description {
  font-size: 14px;
  color: #555;
    font-weight: 200;
    line-height: 1.2;
}
.wine-center,
.sec-five {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 90px 50px;
  row-gap: 80px;
  column-gap: 83px;
  color: #6b6760;
}
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
}
.footer-line {
  position: absolute;
  border: none;
  height: 1px;
  width: 100%;

  bottom: 200px;
  background: #b19359;
}
.footer img {
  display: flex;
  margin: 0 auto;
  padding-bottom: 50px;
}
.footer-text {
  display: flex;
  gap: 90px;
  padding-top: 60px;
}
.footer-text p {
  color: #555;
}

.footersec {
  background-color: #fff8ed;
  position: relative;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;

  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;

  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  color: #000;
}
.secsix {
  background: url('images/bg-michaelides-winery.jpg') no-repeat center/cover;
}
.sec-six {
  text-align: center;
  color: #fff;
  padding: 140px 0;
}
.imgset {
  display: flex;
  gap: 10px;
  width: 100%;
}
.five-right h1,
.sec-six h1,
.sec-3 h1 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
}
.wines-section h1 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 100;
  color: #6b6760;
}

.wine-sec {
  background-image: url('images/Asset\ 10.png');
  background-repeat: no-repeat;
  background-position: 54% 70%;
  background-size: contain;
  position: relative;
  background-color: #fff8ed;
  background-size: 30%;
    padding-bottom: 40px;
}
.wine-center {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  padding-top: 50px;
  flex-wrap: wrap;
}

.weine-img-set img {
      position: absolute;
    right: 200px;
    bottom: -550px;
    max-width: 600px;
    filter: drop-shadow(0px 15px 35px rgba(0, 0, 0, 0.4));
    z-index: 1;
}
.img-sec {
  display: flex;
  gap: 10px;
}
.discover-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-text h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
}
.discoversec {
  background-color: #b19359;
  padding: 32px 0px;
}
.discover-sec h1 {
  color: #fff;
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
}
.imgset img {
  width: 100%;

  object-fit: cover;
}

.discover-sec > button {
  display: inline-block;

  color: #b19359;
  text-decoration: none;
  padding: 18px 40px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  border-color: #b19359;
  background-color: #b19359;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
}
.img-sec img {
  width: 100%;
  height: 400px;
  margin: auto;
  display: block;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.div-space p {
  white-space: nowrap;
  margin: auto;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.div-space img {
  object-fit: none;
}
i.fas.fa-location-dot, i.fas.fa-phone {
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.top-left {
  display: flex;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 12px;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;

  transition: all 0.3s ease;
    
    text-decoration: none;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.five-right p {
  margin-top: 10px;
  margin-bottom: 27px;
    line-height: 1.5;
    font-weight: 200;
}
.wine-left-text {
  text-align: right;
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.wine-right-text {
  text-align: left;
  max-width: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.hamburger {
  font-size: 24px;
  color: white;
  display: none;
  cursor: pointer;
}
.ourwine-header {
  background: url('images/wine-bg.jpg') no-repeat center/cover;
  position: relative;
  background-repeat: no-repeat;
}
.header-text {
  color: #fff;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
.header-text p:last-child {
  font-family: 'Manrope SemiBold', sans-serif;
  max-width: 472px;
    text-align: center;
    font-weight: 200;
    margin: 0 auto;
    line-height: 1.2;
}
.header-text h1 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-size: 55px;
  font-weight: 100;

  padding-bottom: 20px;
    
    text-align: center;
}
.ourwine-header-sec {
  padding-bottom: 230px;
}
.weine-img img {
  position: absolute;
  right: 200px;
}
.taste-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.taste-row span {
  width: 70px;
  font-size: 14px;
}
.bar {
  flex: 1;
  height: 14px;
  background: #c4c4c4;
  border-radius: 20px;
  margin: 0 10px;
  position: relative;
  max-width: calc(100% - 200px);
  width: 308px;
  overflow: hidden;
}
.fill {
  height: 100%;
  background: #7b2c3f;
  border-radius: 20px;
  position: absolute;
  right: 0;
  top: 0;
}
.tasete-p {
  display: flex;
  display: flex;
  flex-direction: column;
  flex: 0 0 33.3333%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.taste-profile-4 .tasete-p {
  flex: 0 0 50%;
}
.taste-profile-4 {
  max-width: 300px;
  margin: 0 auto;
  row-gap: 12px;
}
.tasete-p p {
  padding-top: 12px;
}


/* =====================================
   SIMPLE WORKING IMAGE SLIDER
===================================== */

.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 420px;
}

.slide {
  position: absolute;
  inset: 0;

  transform: translateX(100%);
  transition: transform 0.8s ease;

  will-change: transform;
  z-index: 1;
}

/* active */
.slide.active {
  transform: translateX(0);
  z-index: 2;
}

.slide:not(.active) {
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  backface-visibility: hidden;
  transform: translateZ(0);
}

/* arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 20px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: #b19359;
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.slide.prev {
  transform: translateX(-100%);
}

.slide.next {
  transform: translateX(100%);
}

@media (max-width: 768px) {
  .slider-track {
    height: 260px;
  }
}
/*************************************** 2nd page ourwine page ****************************************/
.ourwine-sec-2 {
  color: #6b6760;
  font-family: 'Carla Sans Light', Arial, sans-serif;
  padding-top: 100px;
  padding-bottom: 190px;
}
.ourwine-sec-2 p {
  max-width: 552px;
  padding-top: 30px;
    line-height: 1.2;
}
.section3,
.section4 {
  background-color: #fff8ed;
}
.section4 {
  padding: 50px 0;
  color: #6b6760;
  font-family: 'Carla Sans Light', Arial, sans-serif;
}
.ourwine-sec-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #6b6760;
  padding: 74px 0;

  border-bottom: 0.5px solid #b19359;
}
.ourwine-sec-3 h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  padding-bottom: 57px;
  font-size: 30px;
}

.fill {
  height: 100%;
  background: #7b2c3f;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.taste-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.taste-profile img {
  width: 70px;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
}
.pairs img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
.tasete-p i,
.pairs i {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #b19359;
}
.pairs p {
  padding-top: 28px;
}
.pairs {
  display: flex;
  flex-direction: column;
}
.taste-profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 0.5px solid #b19359;
}
.taste-profile-left h2 {
  padding-bottom: 57px;
}

.taste-profile-img {
  display: flex;
  gap: 32px;
}
/* ourwine-sec-2
 */
.ourwine-sec-4,
.taste-profile-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ourwine-sec-4 h1 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-size: 52px;
  font-weight: 200;
  padding-bottom: 10px;
}

.ourwine-sec-3 h1 {
  text-align: center;
  font-family: 'Carla Sans Light', Arial, sans-serif;
}
.pairs-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding-top: 34px;
}
.header_mobile {
  display: none;
}

.taste-profile-left img {
  max-width: 100%;
}

/* =========================================
   WINE BOTTLE SLIDER
   ========================================= */

.wines-section {
  position: relative;
  padding-bottom: 240px;
  touch-action: pan-y;
}

.wine-img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 400px;
  height: 760px;
  z-index: 2;
}

.wine-img,
.wine-center {
  user-select: none;
  -webkit-user-select: none;
}

.wines-section.is-dragging {
  cursor: grabbing;
}

.wine-img .bottle-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.wine-img .bottle-frame.active {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.12))
    drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.08));
}

/* controls */
.wine-controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.wine-controls button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(107, 103, 96, 0.18);
  background: rgba(255, 248, 237, 0.96);
  color: #6b6760;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.wine-controls button:hover {
  background: #f4ede2;
}

.wine-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wine-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(107, 103, 96, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.wine-dot.active {
  background: #6b6760;
  transform: scale(1.08);
}

/* smooth text swap */
.wine-text-fade {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* mobile */
@media (max-width: 768px) {
  .wines-section {
    padding-bottom: 120px;
  }

  .wine-img {
    width: 180px;
    height: 460px;
  }

  .wine-img .bottle-frame {
    position: absolute;
    display: block;
  }

  .wine-controls {
    bottom: 18px;
    gap: 10px;
  }

  .wine-controls button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .wine-dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 768px) {
  .bar,
  .taste-con,
  .taste-row {
    width: 100%;
  }
  .mobile_nav.active {
     opacity: 1;
  visibility: visible;
  pointer-events: auto;
  }
    
    .mobile_nav.active .navbar {
  transform: translateX(0);
}
  .mobile_nav .navbar {
  position: relative;
  top: 0;
  right: 0;
  width: min(82%, 340px);
  height: 100%;
  margin-left: auto;
  background-color: #b19359;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 110px 25px 40px;

  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  }
  .header_mobile {
    font-size: 30px;
    color: #fff;
    margin-top: 50px;
    align-items: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
  }
    
    
    .close-menu {
  position: absolute;
  top: 25px;
  right: 25px;

  font-size: 28px;
  color: #fff;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 10;
}
  .menu_bt {
    cursor: pointer;
  }
  .header-btm h1,
  .header-text h1 {
    font-size: 32px;
  }
  .header-btm p {
    font-size: 14px;
  }
  .header-btm .hero-desc {
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-middle {
    display: none;
    margin-top: 0;
  }
  .header_mobile img {
    max-width: 150px;
  }
  #navbar {
    display: none;
  }
  .navbar {
    position: absolute;
    top: 60px;
    right: 0;
    width: 80%;
    background-color: #b19359;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    padding: 50px 0;
    height: 90%;
    justify-content: flex-start;
  }
  .pairs-images {
    gap: 15px;
    display: flex;
    flex-direction: column;
  }
  .weine-img-set img {
    display: none;
  }
  .nav-left,
  .nav-right {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    color: #555;
  }
  .nav-right {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .navbar.active .nav-left,
  .navbar.active .nav-right {
    display: flex;
  }
  .sec-1 {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    padding: 30px 0px;
  }
  .sec-1-left h2 {
    padding-left: 0;
    font-size: 26px;
      line-height: 1.2;
  }
  .discover-sec h1 {
    font-size: 24px;
  }
  .sec-five {
    grid-template-columns: 1fr;
    justify-items: center;
    display: block;
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
  }
  .wine-left-text,
  .wine-right-text {
    max-width: 100%;
  }
  .five-left.sixty {
    margin-bottom: 50px;
      width: 100%;
  }
  .wine-center,
  .sec-five {
    row-gap: 50px;
  }
  .wine-center {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  padding-top: 120px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
  .read-btn {
    margin-bottom: 20px;
  }
  .discover-sec > button,
  .read-btn {
    padding: 14px 30px;
  }
  .sec-1-right p {
    font-size: 18px;
  }
  .mobile_nav nav {
    width: 70% !important;
    position: relative !important;
    top: 0 !important;
  }

  .hamburger {
    display: none;
    order: 1;
    left: 20px;
    position: absolute;
    top: 20px;
    background: none;
    border: none;
    padding-right: 20px;
    font-size: 38px;
    cursor: pointer;
  }
  .sec-five {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .header-text {
    text-align: center;
    padding: 0 20px;
  }
 .footer-line,
.nav-center {
  display: none;
}
  .hidden {
    display: none;
  }

  .wine-left-text {
  text-align: left;
  max-width: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
  .five-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .wine-right-text {
  text-align: left;
  max-width: 280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

  .wine-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .discover-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .footer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .ourwine-sec-3 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }
  .ourwine-sec-2 {
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 90px;
  }
  .about-us-text {
    flex-direction: column;
  }
}

.footer-custom {
  background: #6b6760;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

/* top links */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* info line */
.footer-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  opacity: 0.85;
}

.footer-info p {
  margin: 0;
  position: relative;
}

.footer-copy {
    padding-top: 20px;
}

.footer-info p:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: rgba(255,255,255,0.6);
}
/* copyright */
.footer-copy p {
  font-size: 13px;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 15px;
}

.footer-social a {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;

  color: #fff;
  font-size: 13px;

  transition: all 0.3s ease;
    
    text-decoration: none;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
}

/* ==============================
   EVENTS PAGE ADDITIONS
   ============================== */
.events-hero {
  background: url('images/events-banner.jpg') no-repeat center/cover;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 40px;
  padding: 100px 0;
  align-items: start;
}

.included-sec {
  background-color: #fff;
  text-align: center;
  color: #6b6760;
  padding: 40px 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.included-divider {
  width: 100%;
  height: 1px;
  background: #e8dfcf;
  margin-bottom: 18px;
}
.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 100px;
  max-width: 960px;
  margin: 40px auto 0;
  text-align: left;
}
.included-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.4;
}
.included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #b19359;
  font-weight: 700;
}

@media (max-width: 640px) {
  .included-list {
    grid-template-columns: 1fr;
  }
}
.included-sec h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #4a463f;
  margin-bottom: 30px;
}
.included-note {
  text-align: center;
  color: #6b6760;
  line-height: 1.5;
  max-width: 640px;
  margin: 60px auto 0;
}

.booking-banner {
  background-image: linear-gradient(rgba(30, 22, 15, 0.55), rgba(30, 22, 15, 0.55)), url('images/bg-koilani-michaelides-winery.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 50px 40px;
  margin-top: 100px;
  margin-bottom: 0;
  line-height: 1.5;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.booking-banner h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.booking-banner p {
  max-width: 640px;
  margin: 0 auto;
}
.booking-banner p:not(:last-of-type) {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
  .booking-banner {
    margin-top: 60px;
    padding: 60px 24px;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  background: #fff8ed;
  border:1px solid #e8dfcf;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.event-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-body {
  padding: 20px 25px;
  color: #6b6760;
    flex: 1;
}

.event-body h3 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-size: 24px;
  line-height: 1.3;
  min-height: 62px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 36px;
text-align: center;
    text-transform: uppercase;
}

.event-body p {
  font-size: 15px;
  line-height: 1.5;
    text-align: center;
}
.event-body p.event-excerpt:not(:last-child) {
  margin-bottom: 14px;
}
.event-capacity {
  list-style: none;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 28px;
}

.event-cta {
  display: flex;
  justify-content: center;
  padding: 0 25px 25px 25px;
  gap: 10px;
}

.btn {
  border: none;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background-color: #b19359;
  color: #fff;
  border: 2px solid #b19359;
}

.btn.ghost {
  background-color: transparent;
  border: 2px solid #b19359;
  color: #b19359;
}

.btn.primary:hover {
  background: #a5834e;
}

.btn.ghost:hover {
  background: #b19359;
  color: #fff;
}

.cta-ribbon {
  background-color: #b19359;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-ribbon .wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.carousel-wrap {
  background: #fff8ed;
  padding: 80px 0;
}

.newsletter {
  background: #b19359;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.newsletter .box {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter input {
  width: 70%;
  padding: 14px;
  border: none;
  margin-top: 15px;
  border-radius: 4px 0 0 4px;
}

.newsletter button {
  padding: 14px 25px;
  background: #fff;
  color: #b19359;
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
}

.newsletter form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .event-cta {
    flex-direction: column;
  }
  .newsletter form {
    flex-direction: column;
  }
  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 4px;
  }
}

/* ==============================
   CONTACT PAGE ADDITIONS
   ============================== */
.contact-hero {
  background: url('images/header-banner-02.jpg') no-repeat center/cover;
  color: #fff;
}

/* Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  padding: 80px 0;
  color: #6b6760;
}
.contact-card {
  background: #fff8ed;
  border: 1px solid #e8dfcf;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.contact-card h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 12px;
}

/* Info list */
.contact-list {
  list-style: none;
  margin: 10px 0 20px;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}
.contact-list i {
  color: #b19359;
}

/* CTAs */
.contact-cta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-weight: 700;
  font-size: 13px;
  color: #4a463f;
}
.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid #b19359;
  padding: 12px 12px;
  font-size: 14px;
  color: #4a463f;
  background: #fff;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 3px rgba(177, 147, 89, 0.2);
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 16px;
  font-size: 14px;
}
.checkbox input {
  width: 18px;
  height: 18px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-actions .form-note {
  font-size: 12px;
  color: #7d7d7d;
  margin: 0;
}
.form-success {
  margin-top: 14px;
  background: #ecf9f1;
  color: #116b3d;
  border: 1px solid #a9e1c5;
  padding: 12px 14px;
  border-radius: 8px;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

/* Map */
.map-wrap {
  background: #fff8ed;
  border-top: 1px solid #b19359;
  border-bottom: 1px solid #b19359;
  padding: 60px 0;
}
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8dfcf;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Buttons (reuse palette) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn.primary {
  background: #b19359;
  border-color: #b19359;
  color: #fff;
}
.btn.ghost {
  background: #fff;
  border-color: #b19359;
  color: #b19359;
}
.btn.primary:hover {
  background: #a5834e;
}
.btn.ghost:hover {
  background: #b19359;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   ABOUT PAGE ADDITIONS
   ============================== */
.about-hero {
  background: url('images/about-michaelides-winery.jpg') no-repeat center/cover;
  color: #fff;
 
}

/* Intro / Philosophy */
.about-intro {
  background: #fff8ed;
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  color: #6b6760;
    line-height: 1.5;
}
.about-copy h2 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 34px;
  margin-bottom: 12px;
}
.about-copy p:not(:last-child) {
  margin-bottom: 16px;
}
.about-us-section {
  background-color: #ffffff;
  padding: 40px 0;
  background-image: url('images/Asset\ 7.png');
  background-repeat: no-repeat;
  background-size: 16%;
  background-position: calc(100% - 200px) calc(100% - -50px);
}
.about-us-text {
  color: #6b6760;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  gap: 60px;
}
.about-us-col {
  flex: 1;
}
.about-bullets {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}
.about-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
}
.about-bullets i {
  color: #b19359;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* Section titles */
.section-title {
  text-align: center;
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 34px;
  color: #6b6760;
  margin-bottom: 26px;
}

/* Timeline */
.about-timeline {
  padding: 80px 0;
  color: #6b6760;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  position: relative;
}
.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 16px 0;
  border-top: 1px dashed #e8dfcf;
}
.timeline li:first-child {
  border-top: 0;
}
.tl-year {
  font-weight: 800;
  color: #7b2c3f;
  letter-spacing: 0.6px;
  text-transform: uppercase;
    white-space: nowrap;
}
.tl-body {
  line-height: 1.6;
}

/* Terroir */
.about-terroir {
  padding: 80px 0;
  color: #6b6760;
}
.terroir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.terroir-card {
  background: #fff;
  border: 1px solid #e8dfcf;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.terroir-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.terroir-card h3 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 22px;
  padding: 14px 14px 6px;
  color: #4a463f;
}
.terroir-card p {
  padding: 0 14px 18px;
    line-height: 1.5;
    font-size: 14px;
}

/* Team */
.about-team {
  padding: 80px 0;
  color: #6b6760;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  background: #fff8ed;
  border: 1px solid #b19359;
  border-radius: 12px;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card h3 {
  font-family: 'Carla Sans Light', Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin: 10px 0 6px;
}
.team-card p {
  font-size: 14px;
  padding: 0 16px 18px;
}

/* Sustainability */
.about-sustainability {
  background: #fff8ed;
  padding: 80px 0;
}
.sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  color: #6b6760;
}

.sust-item img {
    width: 100%;
}

.sust-item {
  background: #fff;
  border: 1px solid #e8dfcf;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.sust-item i {
  color: #b19359;
  font-size: 26px;
  margin-bottom: 10px;
}
.sust-item h4 {
  font-size: 18px;
  margin: 8px 0 6px;
}

.sust-item p {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .terroir-grid,
  .team-grid,
  .sust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .terroir-grid,
  .team-grid,
  .sust-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   TYPOGRAPHY OVERRIDES — Body = Helvetica
   (Titles keep Carla Sans Light)
   ========================================= */
:root {
  --body-font: Helvetica, Arial, sans-serif;
  --title-font: 'Carla Sans Light', Arial, sans-serif;
}

/* Keep headings on Carla (titles stay the same) */
h1,
h2,
h3,
h4,
h5,
h6,
.five-right h1,
.sec-six h1,
.sec-3 h1,
.wines-section h1,
.title-text h2,
.ourwine-sec-2 h1,
.ourwine-sec-3 h2,
.ourwine-sec-4 h1,
.discover-sec h1 {
  font-family: var(--title-font) !important;
}

/* Make all body text Helvetica */
body,
p,
li,
a,
span,
small,
strong,
em,
label,
input,
select,
textarea,
button,
.btn,
.read-btn,
.event-body p,
.event-cta a,
.contact-list li,
.form-field label,
.form-actions .form-note,
.newsletter p,
.newsletter input,
.newsletter button,
.footer-text p,
.header-btm p,
.header-text p,
.header-middle nav a,
.mobile_nav nav a,
.div-space p,
.discover-sec > button {
  font-family: var(--body-font) !important;
    font-weight: 200;
}

body {
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

/* =========================================
   RESPONSIVE SYSTEM (site-wide)
   Keep visuals, fix overflow + spacing
   ========================================= */

/* Large tablets / small laptops */
@media (max-width: 1100px) {
  .navbar {
    padding-top: 95px;
  }

  .nav-left,
  .nav-right {
    gap: 28px;
    width: calc(50% - 150px);
  }

  .nav-center img {
    max-width: 170px;
  }

  .header-middle {
    margin-bottom: 80px;
  }

  .header-btm h1 {
    font-size: clamp(30px, 3.8vw, 43px);
  }

  .header-text h1 {
    font-size: clamp(34px, 4.8vw, 55px);
  }

  .top-right {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .wine-img {
    width: 320px;
    height: 660px;
  }

  .wine-center {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sec-five {
    padding-left: 30px;
    padding-right: 30px;
    column-gap: 50px;
    padding-bottom: 20px;
  }

  .img-sec img {
    height: 320px;
  }

  .slider-track {
    height: 340px;
  }

  .weine-img-set img {
    right: 120px;
    max-width: 460px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .header-top {
    gap: 10px;
  }

  .top-right p,
  .div-space p {
    font-size: 11px;
  }

  .header-middle nav a {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .nav-left,
  .nav-right {
    gap: 20px;
    width: calc(50% - 140px);
  }

  .nav-center {
    top: 52px;
  }

  .nav-center img {
    max-width: 150px;
  }

  .white-line {
    top: 50px;
  }

  .sec-1 {
    gap: 32px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sec-1-left h2 {
    font-size: 32px;
    padding-right: 0;
  }

  .wines-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 150px;
  }

  .wine-img {
    width: 260px;
    height: 560px;
  }

  .wine-center {
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 36px;
  }

  .wine-left-text,
  .wine-right-text {
    max-width: 320px;
  }

  .events-grid {
    padding: 80px 0;
    gap: 28px;
  }

  .event-media img {
    height: 220px;
  }

  .cta-ribbon {
    padding: 50px 0;
  }

  .contact-grid {
    padding: 70px 0;
  }

  .map-embed iframe {
    height: 360px;
  }

  .img-sec img {
    height: 280px;
  }

  .weine-img-set img {
    right: 70px;
    bottom: -455px;
    max-width: 380px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
    
    .wines-section h1 {
        font-size: 26px;
    }

  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-right {
    justify-content: center;
    gap: 10px;
      padding-top: 10px;
  }

  .div-space {
    justify-content: center;
  }

  .header-btm p {
    letter-spacing: 2px;
  }
  .header-btm .hero-desc {
    padding-bottom: 170px;
    letter-spacing: normal;
  }

  .sec-3,
  .sec-six {
    padding: 110px 0;
  }

  .wines-section {
    padding-bottom: 120px;
  }

  .wine-center {
    padding-left: 0;
    padding-right: 0;
    padding-top: 300px;
  }

  .img-sec img {
    height: 220px;
  }

  .event-body {
    padding: 20px;
  }

  .event-cta {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .form-note {
    text-align: center;
  }

  .map-wrap {
    padding: 45px 0;
  }

  .map-embed iframe {
    height: 300px;
  }

  .read-btn,
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}


