@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root{
  --cream:#fbf2ee;
  --ink:#141419;
  --muted:#5d5d66;
  --wine:#4c0714;
  --wine2:#7a0f24;
  --card:#ffffff;
  --border: rgba(0,0,0,0.08);
}

*{ box-sizing:border-box; }

body{
  font-family:"Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

a{ text-decoration:none; }

.navbar{
  background: rgba(251,242,238,0.70) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar .nav-link{ color: var(--ink); opacity:0.85; }
.navbar .nav-link:hover{ opacity:1; }

.btn-pill{
  border-radius: 999px !important;
}

.section-pad{
  padding: 80px 0;
}

/* HERO */
.hero{
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
}

.hero-eyes{
  position:absolute;
  inset:0;
  background-image:url("Images/eyes.png");
  background-repeat:no-repeat;
  background-position: right 8% center;
  background-size: min(1100px, 92vw);
  opacity: 2;
  pointer-events:none;
  z-index:0;
}


.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 50%,
    rgba(251,242,238,0.12),
    rgba(251,242,238,0.82)
  );
  pointer-events:none;
  z-index:1;
}

.hero .content{
  position:relative;
  z-index:2;
  padding-top: 110px; /* fixed nav spacing */
  padding-bottom: 40px;
}

.display-title{
  font-weight: 700;
  letter-spacing:-0.04em;
  line-height: 1.02;
}

.hero-panel{
  display:inline-block;
  padding: 22px 22px;
  border-radius: 26px;
  background: rgba(251,242,238,0.84);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.08);
  max-width: 760px;
}

/* Badges / pills */
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
}

/* Cards */
.card-soft{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.card-soft .icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.03);
}

/* Wine section */
.section-wine{
  background: linear-gradient(180deg, var(--wine), #24040a);
  color: #fff;
}

.glass-wine{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  padding: 18px;
}

/* Forms */
.form-control, .form-select{
  border-radius: 16px !important;
  border: 1px solid var(--border) !important;
}

.form-control:focus, .form-select:focus{
  box-shadow: 0 0 0 0.2rem rgba(122,15,36,0.18) !important;
  border-color: rgba(122,15,36,0.45) !important;
}

.btn-wine{
  background: var(--wine2) !important;
  border: none !important;
}
.btn-wine:hover{ filter: brightness(1.05); }

/* Gallery */
.media-tile{
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}
.media-tile img{
  width: 100%;
  height: auto;        /* important */
  display: block;
  object-fit: contain; /* no crop */
}

.card-soft, .glass-wine, .media-tile{
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-soft:hover, .glass-wine:hover, .media-tile:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.10);
}

.btn{
  transition: transform .18s ease;
}
.btn:active{
  transform: scale(0.98);
}

.marquee-wrap{
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.45);
  overflow:hidden;
}
.marquee .track{
  display:flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 7s linear infinite;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.marquee span{ opacity: 0.65; }
@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.cursor-glow{
  position: fixed;
  top: 0; left: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(122,15,36,0.18), rgba(122,15,36,0));
  filter: blur(2px);
  z-index: 0;
  opacity: 0.9;
}

.feature-art{
  max-width: 420px;
  width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
}

.apply-art{
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.10));
  transform: translate3d(0,0,0); /* stabilizes rendering */
}

/* float motion: up/down + slight left/right */
.floaty{
  animation: floatDrift 3s ease-in-out infinite;
  will-change: transform;
}

/* no scaling, only movement */
@keyframes floatDrift{
  0%   { transform: translate3d(0px, 0px, 0); }
  25%  { transform: translate3d(10px, -12px, 0); }
  50%  { transform: translate3d(-8px, -2px, 0); }
  75%  { transform: translate3dained3d(-15px, 10px, 0); }
  100% { transform: translate3d(0px, 0px, 0); }
}

.events-art{
  max-width: 200px;
  width: 100%;
  opacity: 0.95;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
}

.events-hero-art{
  width: 100%;
  max-width: 360px;   /* makes it big enough */
  opacity: 0.95;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.08));
}

.events-filter .form-select{
  border-radius: 14px;
}

.events-art-wrap{
  position: relative;
  display: inline-block;
}

/* the blob behind */
.events-art-wrap::before{
  content: "";
  position: absolute;
  width: 340px;
  height: 240px;
  right: -10px;
  top: 55%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 30% 30%,
    rgba(122,15,36,0.22),
    rgba(122,15,36,0.00) 70%
  );
  filter: blur(2px);
  border-radius: 999px;
  z-index: 0;
  opacity: 0.9;
}

/* keep image above blob */
.events-hero-art{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  opacity: 0.98;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.08));
}

/* float in place */
.floaty{
  animation: floatDrift 3.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatDrift{
  0%   { transform: translate3d(0px, 0px, 0); }
  25%  { transform: translate3d(10px, -8px, 0); }
  50%  { transform: translate3d(-8px, -2px, 0); }
  75%  { transform: translate3d(-10px, 10px, 0); }
  100% { transform: translate3d(0px, 0px, 0); }
}


.divider-soft{
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,0.10);
  border-radius: 999px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}


.apply-wrap{
  position: relative;
  width: 100%;
  max-width: 780px;
}

.apply-wrap .card-soft{
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px){
  .apply-wrap{
    margin-left: auto; /* pushes form to the right a bit = balanced */
  }
}

.apply-art-wrap{
  position: relative;
  width: 100%;   /* adjust size of the orbit area */
  max-width: 320px;
}


.apply-blob{
  position:absolute;
  width: 480px;
  right: -120px;
  bottom: -80px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* Heart burst overlay */
.heart-burst{
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.heart{
  position: absolute;
  bottom: -24px;
  font-size: 18px;
  opacity: 0;
  transform: translate3d(0,0,0);
  animation: floatHearts var(--dur) ease-in forwards;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
}

@keyframes floatHearts{
  0%{
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--scale)) rotate(var(--rot));
  }
  10%{
    opacity: 0.95;
  }
  100%{
    opacity: 0;
    transform: translate3d(var(--drift), calc(-1 * var(--rise)), 0) scale(var(--scale)) rotate(calc(var(--rot) * 2));
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .heart{ animation: none !important; }
}


/* Brand logo (header) */
.brand-logo{
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%) contrast(110%) brightness(90%);
  opacity: 0.85;
  transition: filter .25s ease, opacity .25s ease;
}

/* On hover: subtle color reveal (Gen-Z touch) */
.brand-logo:hover{
  filter: grayscale(0%) contrast(110%) brightness(100%);
  opacity: 1;
}

/* Footer logo (bigger, softer) */
.footer-logo{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%) contrast(110%) brightness(90%);
  opacity: 0.8;
}

.footer-logo:hover{
  filter: grayscale(0%) contrast(110%) brightness(100%);
  opacity: 1;
}

.how-art{
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  opacity: 0.95;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.08));
}

/* Make text white on hover for Subscribe & Send Message buttons */
.btn-wine:hover,
.btn-wine:focus {
  color: #fff !important;
}

/* Optional: if you also want dark buttons text to stay white on hover */
.btn-dark:hover,
.btn-dark:focus {
  color: #fff !important;
}
/* Wine buttons: always white text */
.btn-wine {
  color: #fff !important;
}

/* Keep text white on hover / focus / active */
.btn-wine:hover,
.btn-wine:focus,
.btn-wine:active {
  color: #fff !important;
}

.yt-reel{
  display:block;
  position:relative;
  width:100%;
  padding-top:177.78%; /* 9:16 */
  border-radius:18px;
  overflow:hidden;
  background: rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.yt-reel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.05) contrast(1.02);
}

.yt-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}

.yt-play::before{
  content:"";
  width:64px;
  height:64px;
  border-radius:999px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}

.yt-play::after{
  content:"";
  position:absolute;
  width:0;
  height:0;
  border-left:18px solid #fff;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  margin-left:6px;
}

.yt-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,0.55);
  color:#fff;
}


/* Footer */
footer{
  border-top: 1px solid var(--border);
}
.social a{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255,255,255,0.65);
}
.social a:hover{
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991px){
  .hero-eyes{
    background-position:center;
    background-size: min(920px, 120vw);
    opacity: 0.16;
  }
  .hero-panel{
    max-width: 100%;
    padding: 18px 16px;
  }
}

/* MOBILE HERO FIX — make eyes visible behind the hero panel */
@media (max-width: 768px) {
  .hero-eyes{
    opacity: .70 !important;          /* make eyes stronger on mobile */
    background-position: center !important;
    background-size: 140% auto !important;
  }

  .hero-panel{
    background: rgba(255,255,255,.55) !important; /* less solid so eyes show */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* Vertical reels/shorts aspect ratio */
.ratio-9x16 {
  --bs-aspect-ratio: 177.78%; /* (16/9)*100 */
}

/* Make embeds look clean */
.reel-embed {
  max-width: 360px;        /* nice “phone reel” size */
  margin: 0 auto;          /* center */
}

.reel-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  background: #000;        /* avoids white flash while loading */
}
/* 9:16 ratio for reels/shorts */
.ratio-9x16 { --bs-aspect-ratio: 177.78%; } /* 16/9 * 100 */

/* YouTube reel container */
.yt-reel {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* Thumbnail fallback */
.yt-fallback {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}

.yt-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

/* Play button */
.yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.yt-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Small label */
.yt-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}
