:root {
  --dark: #2E3F4F;
  --muted: #5F7282;
  --soft: #F8F9FB;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
}

#preloader {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url("../assets/preloader-bg.png") center/cover no-repeat;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* logo in center */
.preloader-logo {
  width: 96px;                 /* SMALLER */
  opacity: 0.95;
  transform: scale(1);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

/* when exiting */
#preloader.exit .preloader-logo {
  transform: scale(0.35);      /* ZOOM OUT */
  opacity: 0;
}

#preloader.exit {
  opacity: 0;
  visibility: hidden;
}


.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 140px 80px;
  gap: 80px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
}

.hero p {
  color: var(--muted);
  max-width: 420px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
}

.tape {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 70px;           /* SMALLER */
  opacity: 0.65;         /* SUBTLE */
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 6;
}



/* =========================
   GALLERY SECTION (FIXED)
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 120px 0;
  max-width: 980px; /* KEY FIX */
  margin: 0 auto;
}

/* image wrapper control */
.gallery img {
  width: 100%;
  max-width: 300px; /* KEY FIX */
  margin: 0 auto;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.15));
}


/* =========================
   GALLERY MOBILE PADDING FIX
========================= */

@media (max-width: 900px) {
  .gallery {
    padding-left: 24px;
    padding-right: 24px;
  }
}



.tape {
  display: none !important;
}




/* =========================
   FEATURE SECTIONS (DESKTOP)
========================= */

.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image";
  gap: 80px;
  align-items: center;
  padding: 140px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* reversed desktop layout */
.feature-section.reverse {
  grid-template-areas: "image text";
}

/* =========================
   TEXT
========================= */

.feature-text {
  grid-area: text;
}

.feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
}

.feature-text p {
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 28px;
}

/* =========================
   IMAGE
========================= */

.feature-image {
  grid-area: image;
  height: 420px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BUTTON
========================= */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .05em;
  transition: all .3s ease;
}

.btn:hover {
  background: var(--dark);
  color: #fff;
}

/* =========================
   MOBILE (STACKED)
========================= */

@media (max-width: 900px) {

  .feature-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
    padding: 80px 24px;
    gap: 32px;
  }

  /* 🔑 RESET reverse behavior on mobile */
  .feature-section.reverse {
    grid-template-areas:
      "image"
      "text";
  }

  /* force consistent text alignment */
  .feature-text {
    text-align: left;
    justify-self: start;
  }

  .feature-text p {
    max-width: 100%;
  }

  .feature-image {
    height: 300px;
  }
}


/* VALUE STRIP */

.value-strip {
  padding: 60px 20px;
  background: #faf8f6;
}

.value-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.value-grid h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.value-grid p {
  font-size: 15px;
  opacity: 0.8;
}


/* VISIT CTA */

.visit-cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f6f2ee);
}

.visit-content {
  max-width: 700px;
  margin: auto;
}

.visit-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.visit-content p {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.85;
}


/* =============================
   ABOUT HERO
============================= */

.about-hero {
  position: relative;
  padding: 140px 20px 100px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #f6f2ee 100%);
}

.about-hero-inner {
  max-width: 750px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.about-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}


/* =============================
   ABOUT HERO MOBILE
============================= */

@media (max-width: 768px) {

  .about-hero {
    padding: 110px 20px 70px;
  }

  .about-hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .about-hero p {
    font-size: 16px;
  }

}


.about-hero-inner {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =============================
   CONTACT PAGE
============================= */

.contact-section {
  padding: 100px 20px;
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2,
.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.85;
}


/* FORM */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e6e0da;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}


/* MAP */

.map-section {
  margin-top: 40px;
}



@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}


/* ===== FULL MENU LUXURY DARK ===== */

.menu-page {
  background:#06121a;
  color:#fff;
  padding:90px 20px;
}

.menu-container {
  max-width:1100px;
  margin:auto;
}

.menu-section {
  margin-bottom:90px;
}

.menu-title {
  font-family:'Playfair Display', serif;
  font-size:44px;
  margin-bottom:8px;
}

.menu-subtitle {
  opacity:.7;
  margin-bottom:35px;
}

.menu-items {
  border:1px solid rgba(255,255,255,.15);
  padding:28px;
}

.menu-item {
  display:flex;
  justify-content:space-between;
  margin-bottom:24px;
}

.menu-item:last-child { margin-bottom:0; }

.menu-item-name { font-weight:500; }

.menu-item-desc {
  font-size:14px;
  opacity:.7;
  margin-top:5px;
}

.menu-price {
  color:#d4af37;
  font-weight:500;
}

@media(max-width:768px){
  .menu-title { font-size:34px; }
}



/* =============================
   GENERIC PAGE CONTENT
============================= */

.simple-content {
  padding: 90px 20px;
  background: #ffffff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.simple-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.simple-content p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}


section {
  position: relative;
}

section + section {
  margin-top: 0;
}




/* =============================
   PAGE HERO (FOR NEW PAGES)
============================= */

.page-hero {
  padding: 160px 20px 120px;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff, #f6f2ee);
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 22px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
}



/* =============================
   CARD GRID (MULTI PAGE USE)
============================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: all .35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
}

.card p {
  opacity: 0.75;
}



/* =============================
   FORM POLISH
============================= */

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 2px rgba(46,63,79,0.08);
}



.dark-section {
  background: #06121a;
  color: white;
  padding: 120px 20px;
}

.dark-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.dark-section p {
  opacity: .8;
}



@media (max-width: 900px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 20px 80px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

}


/* =============================
   LOCATION PAGE
============================= */

.location-section {
  padding: 100px 20px;
  background: #ffffff;
}

.location-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* CARD */

.location-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.location-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
}

.location-item {
  margin-bottom: 22px;
}

.location-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: .6;
}

.location-item p {
  margin: 0;
  font-size: 16px;
}

/* MAP */

.location-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}



@media (max-width: 900px) {

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 380px;
  }

}



/* =============================
   CATERING PAGE
============================= */

.catering-section {
  padding: 110px 20px;
  background: #faf8f6;
}

.catering-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.catering-card {
  background: white;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: all .35s ease;
}

.catering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.catering-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 14px;
}

.catering-card p {
  opacity: .8;
  margin-bottom: 18px;
}

.catering-card ul {
  padding-left: 18px;
  margin: 0;
}

.catering-card li {
  margin-bottom: 8px;
  font-size: 15px;
}


@media (max-width: 900px) {

  .catering-grid {
    grid-template-columns: 1fr;
  }

}



/* =============================
   ORDER PAGE
============================= */

.order-section {
  padding: 110px 20px;
  background: #faf8f6;
}

.order-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.order-card {
  background: white;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  text-align: center;
  transition: all .35s ease;
}

.order-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.order-card i {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--dark);
}

.order-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 14px;
}

.order-card p {
  opacity: .8;
  margin-bottom: 20px;
}

.order-partners {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.order-partners span {
  font-size: 13px;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 20px;
}


@media (max-width: 900px) {

  .order-container {
    grid-template-columns: 1fr;
  }

}


/* =============================
   PREMIUM VALUE STRIP
============================= */

.premium-values {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff, #f7f4f1);
}

/* HEADER */

.value-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.value-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 14px;
}

.value-header p {
  opacity: 0.75;
  font-size: 17px;
}

/* GRID */

.premium-values .value-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARDS */

.value-card {
  background: white;
  padding: 45px 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  transition: all .35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

/* ICON */

.value-card i {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--dark);
}

/* TEXT */

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.6;
}


@media (max-width: 900px) {

  .premium-values .value-grid {
    grid-template-columns: 1fr;
  }

  .value-header h2 {
    font-size: 32px;
  }

}



/* =============================
   CATERING HERO
============================= */

.catering-hero {
  background: linear-gradient(to bottom, #ffffff, #f5efe9);
}


/* =============================
   EVENT TYPES
============================= */

.catering-types {
  padding: 80px 20px;
  background: #faf8f6;
  text-align: center;
}

.catering-types h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 40px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.type-item {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.type-item i {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--dark);
}

.type-item span {
  display: block;
  font-size: 14px;
}


/* =============================
   CATERING CARD ICON
============================= */

.catering-card i {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--dark);
}


/* =============================
   MOBILE
============================= */

@media (max-width: 900px) {

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =============================
   EVENTS HERO
============================= */

.events-hero {
  background: linear-gradient(to bottom, #ffffff, #f5efe9);
}


/* =============================
   EVENTS TYPES
============================= */

.events-types {
  padding: 110px 20px;
  background: #faf8f6;
  text-align: center;
}

.events-types h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 50px;
}


/* GRID */

.events-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}


/* CARD */

.event-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  transition: all .35s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}


/* ICON */

.event-card i {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--dark);
}


/* TEXT */

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.6;
}


/* MOBILE */

@media (max-width: 900px) {

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .events-grid {
    grid-template-columns: 1fr;
  }

}


.footer-form-msg {
  margin-top: 10px;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.8;
}



/* PREMIUM CONTACT INFO */

.premium-contact {
  background: white;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}


.contact-item i {
  font-size: 18px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}


.contact-item p {
  margin: 0;
  line-height: 1.6;
}

.premium-contact h2 {
  margin-bottom: 40px;
}

.contact-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4f1ed;
}


/* PREMIUM FORM */

.premium-form {
  background: white;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.form-success-msg {
  margin-top: 14px;
  font-size: 14px;
  opacity: .85;
}


/* MAP */

.premium-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
}

