/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: #000;
  color: #fff;
  padding-top: 90px; /* prevents header overlap */
}

/* ================= HEADER ================= */
.site-header {
     position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 42px;              /* ⬅ reduced height */
  padding: 0 32px;           /* ⬅ tighter padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
}


/* LEFT MENU */
.nav-left {
  display: flex;
  gap: 26px;
  flex-shrink: 0;
}

.nav-left a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* RIGHT INFO */
.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

/* MOBILE FIX */
@media (max-width: 992px) {
  .nav-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    justify-content: center;
  }

  .nav-left {
    gap: 20px;
  }
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #cfa670;
}

.hero h1 {
  font-size: 96px;
  letter-spacing: 3px;
}

.tagline {
  font-size: 18px;
  margin-top: 15px;
  color: #e6d3a3;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  display: inline-block;
  margin: 0 12px;
  padding: 10px 26px;
  border: 2px solid #cfa670;
  color: #cfa670;
  text-decoration: none;
  letter-spacing: 2px;
}

/* ================= STORY ================= */

.story {
  background: #fff;
  color: #333;
  padding: 120px 0;
}

.story-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #cfa670;
}

.story-text h2 {
  font-size: 52px;
  margin: 10px 0 20px;
}

.story-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-images img {
  width: 100%;
  display: block;
}

/* ================= MENU ================= */

.menus {
  background: #fff;
  padding: 70px 0;
  color: #333;
}

.menus-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.menus-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menus-images img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}

.menus-text h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #cfa670;
}

.menus-text h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.menus-text p {
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ================= EXPERIENCE SECTION ================= */

.experience {
  background: #1f3d2b;
  padding: 100px 0;
}

.experience-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-text h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: #cfa670;
}

.experience-text h2 {
  font-size: 56px;
  margin: 15px 0 25px;
}

.experience-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Carousel Frame */
.carousel-frame {
  position: relative;
  height: 480px;
  border: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #aaa;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #cfa670;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    
   /* FLOATING CENTER LOGO (NO WHITE BG) */
.floating-logo {
  position: absolute;
  top: 40px;                  /* overlaps video */
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  background: #1f3d2b;        /* brand green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;                /* ABOVE video & overlay */
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.floating-logo img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}
/* ================= About ================= */
.about-hero {
  background: #1f3d2b;
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
}

.about-hero h1 {
  font-size: 64px;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 18px;
  color: #e6d3a3;
}

.about-section {
  padding: 100px 0;
  background: #1f3d2b;
  color: #fff;
}

.about-section.light {
  background: #fff;
  color: #333;
}

.about-container {
  width: 75%;
  margin: auto;
}

.about-container h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-hero-parallax {
  height: 90vh;
  background: url("../images/about-hero.jpg") center/cover fixed no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 72px;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e6d3a3;
}
.about-split {
  background: #fff;
  padding: 120px 0;
  color: #333;
}

.about-split-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-split-text .script {
  font-family: 'Great Vibes', cursive;
  font-size: 40px;
  color: #cfa670;
}

.about-split-text h2 {
  font-size: 52px;
  margin: 10px 0 20px;
}

.about-split-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-philosophy {
  background: #1f3d2b;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.about-philosophy-container {
  width: 70%;
  margin: auto;
}

.about-philosophy .script {
  font-family: 'Great Vibes', cursive;
  font-size: 38px;
  color: #cfa670;
}

.about-philosophy h2 {
  font-size: 48px;
  margin: 15px 0 25px;
}

.about-philosophy p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.philosophy-quote {
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #e6d3a3;
}