/* Buttons */
.btn {
  display: inline-block;
  margin-right: 2px;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-accent);
  color: white;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
  border: 1px solid var(--color-accent);
}

.btn:hover {
  opacity: 0.9;
}

.btn-gallery{
    background-color: white;
    color:  var(--color-accent);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

nav {
  display: flex;
  justify-content: center;

  padding: 1rem 2.5rem;     /* breathing room */
  
  background: rgba(196, 106, 74, 0.18); /* soft terracotta wash */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 0;         /* touches edges cleanly */
}



.nav-links {
  display: flex;
  gap: 4.5rem;
}


.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #3a2b24;           /* warm charcoal */
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 4px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-links a.active::after {
  transform: translateX(-50%) scale(1);
}

/* Cards */
.card {
  background: var(--color-bg-main);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.75rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

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


.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
}

.hero-video {
  position: relative;
  height: 100vh;         
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}


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

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 241, 236, 0.75); /* clay white wash */
  z-index: 2;
  pointer-events: none;
}


.hero-video .hero-content {
  position: relative;
  z-index: 3;
}

.hero-video h1 {
  color: var(--color-text-main);
}

.hero-video p {
  color: var(--color-text-muted);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  align-items: center;
  gap: 6rem; /* more air between them */
}

.hero-logo img {
  width: 100%;
  max-width: 380px;   /* BIG, intentional */
  height: auto;
}

.hero-logo {
  padding-left: 3rem; /* space from left edge */
}
.hero-video .container {
  max-width: 1300px; /* wider than normal sections */
}

.hero-text {
  text-align: left;
  padding-right: 3rem; /* space from right edge */
  max-width: 520px;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
}

.offers {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}


.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-text h2 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--color-text-muted);
  max-width: 420px;
  line-height: 1.6;
}

.featured {
  max-width: 800px;
}

.featured p {
  margin: 1rem 0;
}

.vibe-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  position: relative;
}

.vibe-strip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.vibe-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-section);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.vibe-arrow:hover {
  background-color: var(--color-bg-main);
  transform: translateX(4px);
}

.upcoming-header {
  text-align: center;
  margin-bottom: 3rem;
}

.upcoming-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.upcoming-header p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.upcoming-card {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.upcoming-date {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 2rem;
}

.upcoming-date .day {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-text-main);
}

.upcoming-date .month {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.upcoming-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}

.upcoming-info p {
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 420px;
}

.upcoming-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.upcoming-link:hover {
  text-decoration: underline;
}


.footer {
  background-color: var(--color-bg-section);
  padding: 4rem 0 3rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-brand img {
  max-width: 180px;
  width: 100%;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-block h4 {
  font-family: var(--font-heading);
  color: var(--color-text-main);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-block a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-block a:hover {
  color: var(--color-accent);
}

.footer-block p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* =========================
   PHONE RESPONSIVE (≤480px)
   ========================= */
@media (max-width: 480px) {

  /* Buttons */
  .btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
  }

  /* Header / Nav */
  nav {
    padding: 0.8rem 1.2rem;
  }

  .nav-links {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-video {
    height: 85vh;
  }

  .hero-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-logo {
    padding-left: 0;
    text-align: center;
  }

  .hero-logo img {
    max-width: 260px;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Cards */
  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 1.4rem;
  }

  .card h3 {
    font-size: 1.15rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* Offers grid */
  .offers {
    grid-template-columns: 1fr;
  }

  /* About split */
  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image img {
    height: 300px;
  }

  .about-text p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* Vibe strip */
  .vibe-strip {
    grid-template-columns: 1fr;
  }

  .vibe-strip img {
    height: 260px;
  }

  .vibe-arrow {
    height: 70px;
    font-size: 1.6rem;
  }

  /* Upcoming section */
  .upcoming-header h2 {
    font-size: 2rem;
  }

  .upcoming-card {
    gap: 1.8rem;
  }

  .upcoming-date .day {
    font-size: 2rem;
  }

  .upcoming-info h3 {
    font-size: 1.25rem;
  }

  .upcoming-info p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* Footer */
  .footer {
    padding: 3rem 1.2rem;
  }

  .footer-grid {
    gap: 2.5rem;
  }

  .footer-brand img {
    max-width: 140px;
  }

  .footer-tagline,
  .footer-block p,
  .footer-block a {
    font-size: 0.9rem;
  }
}
