@charset "utf-8";
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/*FONT*/
.merriweather {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

html,body {
      min-height: 100vh;
      background: #26384a;
      font-family: "Merriweather", serif;
      overflow-x: hidden;
  	  overflow-y: auto;
    }

/*________________________________________________________________________________________________________________________________*/
/* ===== HEADLINE & SUBHEADLINE (HERO) ===== */
.headlinehome {
      font-family: "Qwitcher Grypen", cursive;
      font-weight: 700;
      font-size: clamp(60px, 14vw, 150px);
      line-height: 0.95;
      color:#26384a;
      transform: translateY(-50px);
    }

.title p {
	font-size: 20px;
	color:#26384a;
    transform: translateY(-50px);
}

.headlineeve {
      font-family: "Qwitcher Grypen", cursive;
      font-weight: 700;
      font-size: clamp(60px, 14vw, 150px);
      line-height: 0.95;
	  transform: translateY(-50px);
      color:#fceecd;
    }

.title2 p {
	font-size: 20px;
	color:#fceecd;
    transform: translateY(-50px);
}

/* ===== LOGO ===== */
.logo img {
	  transform: translateY(-90px);
      width: 150px;
      max-width: 50vw;
      height: auto;
      display: block;
      margin: 0 auto;
    }
/*________________________________________________________________________________________________________________________________*/
/* ===== SPLASH:BUTTON ===== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fceecd;
  color: #fceecd;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 10px 50px;
  transform: translateY(-50px);
	}

.btntext {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(14px, 4vw, 20px);
	}
	  
.btn:hover {
      background: #fceecd;
      color: #26384a;
    }

.btn2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #a9502c;
  background-color: #a9502c;
  color: #fceecd;
  text-decoration: none;
  transition: 0.3s ease;
  padding: 10px 50px;
	}

.btn2:hover {
      background: #fceecd;
      color: #a9502c;
    }

/*________________________________________________________________________________________________________________________________*/
/* ===== NAVIGATION BAR ===== */
.nav1 {
  margin-left:17%;
  transform: translateY(145px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: auto;
  z-index: 10;
}

.naveve1 {
  margin-left:17%;
  transform: translateY(145px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: auto;
  z-index: 10;
}

.nav2 {
  margin-left:60%;
  transform: translateY(145px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: auto;
  z-index: 10;
}

.naveve2 {
  margin-left:60%;
  transform: translateY(145px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: auto;
  z-index: 10;
}

.nav1 ul,
.nav2 ul{
  display: flex;
  gap: 50px;
  list-style: none;
}

.naveve1 ul,
.naveve2 ul{
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav1 a,
.nav2 a {
  position: relative;
  text-decoration: none;
  color: #1b1d1f;
  font-size: 14px;
  font-weight: 700;
  transition: #1b1d1f 0.3s ease;
}

.naveve1 a,
.naveve2 a {
  position: relative;
  text-decoration: none;
  color: #fceecd;
  font-size: 14px;
  font-weight: 700;
  transition: #1b1d1f 0.3s ease;
}

.nav1 a::after,
.nav2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #a9502c;
  transition: width 0.3s ease;
}

.naveve1 a::after,
.naveve2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #cfa667;
  transition: width 0.3s ease;
}

.nav1 a:hover,
.nav2 a:hover {
  color: #cfa667;
}

.naveve1 a:hover,
.naveve2 a:hover {
  color: #cfa667;
}

.nav1 a:hover::after,
.nav2 a:hover::after {
  width: 100%;
}

.naveve1 a:hover::after,
.naveve2 a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER MENU (MOBILE) ===== */
.nav3 { 
	display: none; 
	position: fixed;
	top: 18px;
	right: 25px;
	z-index: 1500;
} 

.menu-toggle { 
	display: none; 
	align-items: center;
	justify-content: center;
	background: #a9502c; 
	color: #fceecd; 
	border: 1px solid rgba(252, 238, 205, 0.24);
	box-shadow: 0 14px 30px rgba(20, 32, 44, 0.22);
	font-size: 30px; 
	cursor: pointer; 
	line-height: 1; 
	width: 52px; 
	height: 52px; 
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu { 
	display: none; 
	position: absolute; 
	top: calc(100% + 14px);
	right: 0; 
	width: min(280px, calc(100vw - 32px)); 
	background: rgba(252, 238, 205, 0.98); 
	border: 1px solid rgba(38, 56, 74, 0.12);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16); 
	backdrop-filter: blur(14px);
	z-index: 1490; 
	text-align: center; 
	padding: 12px 0; 
} 

.mobile-menu a { 
	display: block; 
	text-decoration: none; 
	color: #1b1d1f; 
	font-size: 16px; 
	font-weight: 700; 
	letter-spacing: 0.02em;
	padding: 14px 20px; 
	transition: background 0.3s ease, color 0.3s ease; 
} 

.menu-toggle:hover{
	background: #fceecd;
	color: #a9502c;
	transform: translateY(-1px);
}

.menu-toggle:focus-visible,
.mobile-menu a:focus-visible {
	outline: 3px solid rgba(169, 80, 44, 0.35);
	outline-offset: 3px;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible { 
	background: #a9502c; 
	color: #fceecd; 
	outline: none;
} 

.mobile-menu.show { 
	display: block; 
}

@media (max-width: 1024px) {
  .nav1,
  .nav2,
  .naveve1,
  .naveve2 {
    display: none;
  }

  .nav3 {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
  }
}
/*________________________________________________________________________________________________________________________________*/
/* ===== HERO:HOME ===== */
.container1 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/home.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

    .content1 {
      position: relative;
      z-index: 2;
      opacity: 0;
      animation: fadeUp 1.5s ease forwards;
      animation-delay: 1.5s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 90%;
    }

/* ===== HERO:ABOUT ===== */
.container2 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/about.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/* ===== HERO:DAILY ===== */
.container3 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/daily.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/* ===== HERO:EVENING ===== */
.container4 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/evening.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/* ===== HERO:EVENT ===== */
.container5 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/event.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/* ===== HERO:REWARDS ===== */
.container6 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/rewards.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/* ===== HERO:COMING ===== */
.container7 {
      position: relative;
      min-height: 110vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fceecd;
	  background: url("Image/coming.png") center/cover no-repeat;
      opacity: 0;
      animation: fadeIn 2s ease forwards;
      padding: 20px;
    }

/*________________________________________________________________________________________________________________________________*/
/* =====ABOUT ===== */
.section {
  padding: 80px 10%;
  text-align: center;
  color:#fceecd;
  margin-bottom:50px;
}

.section h1{
  margin-bottom: 20px;
  font-family: 'playfair-display', serif;
  font-size:40px;
}

.section p{
  line-height:1.8;
  margin-top:20px;
  margin-bottom: 40px;
  font-weight:300;
}

/*________________________________________________________________________________________________________________________________*/
/* ===== HOME: BUTTONS ===== */
.btnhome1 {
  transform: translateY(30px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fceecd;
  color: #fceecd;
  background: none;
  text-decoration: none;
  padding: 10px 50px;
	}

.btnhome2 {
  transform: translateY(100px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fceecd;
  color: #fceecd;
  background-color: #a9502c;
  text-decoration: none;
  padding: 10px 50px;
	}

.btnhome1text,.btnhome2text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(14px, 4vw, 20px);
	}
	  
.btnhome1:hover,.btnhome2:hover{
      background: #fceecd;
      color: #26384a;
    }

.desktop-btn {
  display: inline-flex;
}

.mobile-btn {
  display: none;
}

/* ===== HOME:FOOD ===== */
.flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.simple-image,
.simple-desc {
  flex: 1;
}

.simple-image img {
  width: 90%;
  max-width: 600px;
  display: block;
}

.simple-desc {
  text-align: left;
  font-weight:300;
}

/* ===== HOME:NIGHT ===== */
.alt {
  transform:translateX(205px);
  background: #a9502c;
  max-height:550px;
  max-width:70%;
  align-items: center;
  justify-content: center; 
  color: #fceecd;
  display: flex;
}

.alt h1{
	font-size:40px;
}

.alt img{
max-height:550px;
transform:translateX(41px);
}

.alt .text {
  line-height:1.8;
  transform: translateY(-50px);
  font-weight:300;
  padding: 70px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== HOME:EVENT ===== */
.gallery {
   display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  width: 100%;
  margin: 0;
  padding: 0;
}

.gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ===== HOME:REVIEW ===== */
    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 10px 0 20px;
    }

    .slider {
      display: flex;
      align-items: center;
      will-change: transform;
      transition: transform 0.6s ease;
    }

    .slide {
      flex: 0 0 52%;
      margin: 0 24px;
      position: relative;
      cursor: pointer;
      transform: scale(0.82);
      opacity: 0.45;
      transition: transform 0.45s ease, opacity 0.45s ease;
      z-index: 1;
    }

	.slide a {
 	 text-decoration: none;
 	 color: inherit;
 	 display: block;
	}

    .slide.active {
      transform: scale(1);
      opacity: 1;
      z-index: 3;
    }

.slide.active:hover {
      transform: scale(1.1);
      opacity: 1;
      z-index: 3;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.58);
      transition: opacity 0.45s ease;
      pointer-events: none;
      z-index: 2;
    }

    .slide.active::after {
      opacity: 0;
    }

    .slide img {
      width: 100%;
      height: 345px;
      object-fit: cover;
      display: block;
    }

    .review-card {
      background: #efe3c3;
      padding: 22px 28px 18px;
      text-align: left;
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      margin-bottom: 12px;
    }

    .review-top h3 {
      font-family: "Playfair Display", serif;
      font-size: 25px;
      font-weight: 400;
      color: #24384c;
    }

    .stars {
      font-size: 22px;
      color: #24384c;
      letter-spacing: 2px;
      white-space: nowrap;
    }

    .review-card p {
      font-size: 14px;
      line-height: 1.45;
      color: #24384c;
      text-align: center;
    }

    .dots {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #bfb7a2;
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .dot.active {
      background: #efe3c3;
      transform: scale(1.08);
    }

/*________________________________________________________________________________________________________________________________*/

/*_________________________________________________________________________________________________________________________________*/
/* ===== ABOUT:INTRO ===== */
.about-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 50px 80px 60px;
	  transform: translateX(35px);
    }

    .about-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 300px 300px 1fr;
      grid-template-rows: auto auto;
      column-gap: 28px;
      row-gap: 34px;
      align-items: center;
    }

    .about-img-left {
      grid-column: 1;
      grid-row: 1 / 3;
      width: 100%;
      height: 395px;
      object-fit: cover;
      margin-top: 198px;
      display: block;
    }

    .about-img-center {
      grid-column: 2;
      grid-row: 1;
      width: 100%;
      height: 392px;
      object-fit: cover;
      display: block;
    }

    .about-text-top {
      grid-column: 3;
      grid-row: 1;
      padding-top: 58px;
      max-width: 560px;
    }

    .about-title {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  color:#fceecd;
}

.about-title .big {
  font-size: 60px;
  display: block;
}

.about-title .small {
  font-size: 28px;
  display: block;
  margin-left: 80px;
}

.about-title .big:last-child {
  margin-left: 225px;
  margin-top:-55px;
  margin-bottom:20px;
}
    .about-text-top p,
    .about-text-bottom p {
      line-height: 1.8;
      font-weight: 300;
      color: #fceecd;
    }

    .about-text-top p + p {
      margin-top: 28px;
    }

    .about-text-bottom {
      grid-column: 2 / 4;
      grid-row: 2;
      max-width: 900px;
	  margin-top:-30px;
    }

/* ===== ABOUT:STORY ===== */
.story-section {
      width: 100%;
      min-height: 100vh;
      background: #1b1d1f;
      padding: 42px 56px 48px;
	  transform: translateY(150px);
      margin-bottom:50px;
    }

    .story-title {
      font-family: "Playfair Display", serif;
      font-size: 40px;
      color: #fceecd;
	  margin-left:70px;
      margin-bottom: 50px;
      margin-top: -120px;
    }

    .story-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 42px;
      align-items: start;
    }

    .story-text {
      padding-top: 54px;
      max-width: 600px;
    }

    .story-text p {
      line-height: 1.8;
      color: #fceecd;
      margin-bottom: 16px;
	  text-align:justify;
    }

    .story-text .intro {
      position: relative;
	  text-align:justify;
    }

	.dropcap-img {
  	 float: left;
  	 width: 160px;     
     height: auto;
     margin-left:-10px;
     margin-top:-30px;
    }

    .story-image-wrap {
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .story-image {
	  transform: translateY(90px);
      width: 100%;
      max-width: 420px;
      height: 630px;
      object-fit: cover;
      display: block;
    }

/* ===== ABOUT:MISSION & VISION ===== */
.standfor-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 50px 32px 60px;
	  margin-top:250px;
	  margin-bottom:50px;
    }

    .standfor-wrapper {
      max-width: 1280px;
      margin: 0 auto;
    }

    .standfor-title {
      font-family: "Playfair Display", serif;
      font-size:40px;
      color: #fceecd;
      text-align: center;
      margin-bottom: 34px;
    }

    .standfor-grid {
      display: flex;
      justify-content: center;
      gap: 50px;
      align-items: flex-start;
    }

.standfor-card {
  position: relative;
  width: 400px;
  height: 600px;
  overflow: hidden;
  flex-shrink: 0;
}


.standfor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.standfor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.4s ease;
}

.standfor-text {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  width: 85%;
  text-align: center;
  font-family: "merriweather", serif;
  line-height: 1.8;
  font-weight: 300;
  color: #fceecd;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.4s ease;
}

/*2 BEHAVIORS IN DESKTOP & MOBILE VERSION*/
@media (min-width: 767px) {
.standfor-card:hover img {
  transform: scale(1.05);
}

.standfor-card:hover::after {
  background: rgba(0, 0, 0, 0.45);
}

.standfor-card:hover .standfor-text {
  opacity: 1;
  transform: translate(-50%, 0);
}
}

/* ===== ABOUT:EXPLORE MORE ===== */
.explore-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 40px 0 80px;
      overflow: hidden;
	  margin-bottom:-15%;
    }

    .explore-title {
      font-size: 40px;
      color: #fceecd;
      margin-left: 125px;
      margin-bottom: 30px;
    }

    .explore-row {
      display: flex;
      align-items: flex-start;
      gap: 0;
      position: relative;
      min-height: 340px;
	  width:100%;
	  transform:translateY(20px);
    }

    .explore-card {
      position: relative;
      flex: 1;   
      min-width: 120px; 
      height: 78px;
      border: 3px solid #fceecd;
      background: #26384a;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: right;
      overflow: hidden;
      transition: height 0.45s ease, transform 0.45s ease, background 0.45s ease;
      flex-shrink: 0;
      z-index: 2;
    }

    .explore-card a {
      position: relative;
      z-index: 3;
      text-decoration: none;
      color: #fceecd;
      font-size: 22px;
      line-height: 1.2;
      font-weight: 700;
      padding: 10px;
      display: block;
      width: 100%;
    }

    .explore-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 0.45s ease, transform 0.45s ease;
      z-index: 1;
    }

    .explore-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(169, 80, 44, 0.55);
      opacity: 0;
      transition: opacity 0.45s ease;
      z-index: 2;
    }

    .explore-card:hover {
      height: 250px;
      transform: translateY(0);
    }

    .explore-card:hover::before,
    .explore-card:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    .explore-card:hover a {
      display: flex;
      align-items: flex-start;
      justify-content:flex-end;
      padding-top: 14px;
    }

    .card-1 {
      margin-top: 0;
    }

    .card-2 {
      margin-top: 38px;
      margin-left: -1px;
    }

    .card-3 {
      margin-top: 0;
      margin-left: -1px;
    }

    .card-4 {
      margin-top: 38px;
      margin-left: 0;
    }

    .card-5 {
      margin-top: 0;
      margin-left: 0;
    }

	.card-1:hover {
      height: 250px;
	  background-image: url("Image/exp1.png");
    }

	.card-2:hover {
      height: 250px;
	  background-image: url("Image/exp2.png");
    }

	.card-3:hover {
      height: 250px;
	  background-image: url("Image/exp3.png");
    }

    .card-4:hover {
      height: 250px;
	  background-image: url("Image/exp4.png");
    }

	.card-5:hover {
      height: 250px;
	  background-image: url("Image/exp5.png");
    }

/*________________________________________________________________________________________________________________________________*/
/* ===== DAILY:MENU ===== */
    .menu-section {
      width: 100%;
      min-height: 100vh;
      padding: 55px 70px;
      color:#fceecd;
    }

    .menu-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 35px;
      gap: 20px;
    }

    .menu-top h1 {
	  font-family: "Playfair Display", serif;
      font-size: 60px;
      line-height: 1;
      font-weight: 600;
	  margin-left:50px;
    }

    .menu-top p {
      max-width: 430px;
      line-height: 1.8;
      margin-top: 25px;
      margin-right:26%;
      text-align: right;
	  font-weight:300;
    }

    .menu-wrapper {
      display: grid;
      grid-template-columns: 1fr 120px 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }

    .left-menu,
    .right-menu {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .daily-menu-wrap {
      position: relative;
      width: 100%;
      max-width: 400px;
    }

    .daily-menu-shadow {
      position: absolute;
      left: -21px;
      top: 80px;
      width: 100%;
      height: 70%;
      background: rgba(0,0,0,0.35);
      z-index: 0;
    }

    .daily-menu-img {
      position: relative;
      z-index: 1;
      width: 90%;
      height: 500px;
      object-fit: cover;
      border: 4px solid #fceecd;
      display: block;
	  cursor: zoom-in;
    }

    .vertical-text {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-align: center;
      font-size: 60px;
      font-weight: 600;
	  font-family: "Playfair Display", serif;
      line-height: 1;
	  margin-left:230px;
    }

 .fixed-menu-img {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin-left: 50px;
  cursor: zoom-in;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.8);
  transition: 0.3s ease;
}

.zoom-overlay.active img {
  transform: scale(1);
  cursor: zoom-out;
}

/* ===== DAILY:FOOD GALLERY ===== */
.creations-section {
  width: 100%;
  background: #26384a;
  padding: 70px 0 80px;
  overflow: hidden;
}

.creations-header {
  width: 1180px;
  margin: 0 auto 45px;
  color: #fceecd;
}

.creations-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.creations-header p {
  line-height: 1.8;
  font-weight: 300;
  max-width: 650px;
  margin-bottom: 50px;
}

.creations-header h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.creations-slider-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  position: relative;
  contain: paint;
}

.creations-slider-wrap.dragging {
  cursor: grabbing;
}

.creations-slider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}

.creation-card {
  flex: 0 0 auto;
  width: 270px;
  height: 385px;
  perspective: 1000px;
}

.creation-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.creation-card:hover .creation-card-inner {
  transform: rotateY(180deg);
}

.creation-card-front,
.creation-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.creation-card-front {
  background: #a9502c;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.creation-card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
  pointer-events: none;
}

.creation-card:hover .creation-card-front img {
  transform: scale(1.03);
}

.creation-card-back {
  background: #1b1d1f;
  color: #fceecd;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
  transform: rotateY(180deg);
}

.creation-card-back p {
  line-height: 1.8;
  font-weight: 300;
}

.creations-section {
  width: 100%;
  background: #26384a;
  padding: 70px 0 80px;
  overflow: hidden;
  margin-top:-50px;
}

.creations-subgallery {
  margin-top: 70px;
}

.creations-second-header {
  margin-bottom: 35px;
}

.creations-second-header h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
   font-size: 30px;
  font-weight: 700;
  color: #fceecd;
}

/* ===== DAILY:LINK TO EVENING VIBES ===== */
.eve-section {
  position: relative;
  width: 100%;
  min-height: 340px;
  background: #26384a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eve-banner {
  width: 100%;
  max-width: 100%;
  height: 115px;
  background: #1b1d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.eve-banner span {
  color: #fceecd;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  transition: letter-spacing 0.3s ease, transform 0.3s ease;
}

.eve-banner:hover {
  background: #fceecd;
}

.eve-banner:hover span {
  letter-spacing: 1px;
  color:#1b1d1f;
  transform: scale(1.02);
}

/*________________________________________________________________________________________________________________________________*/
/* ===== NIGHT:SECTION1 ===== */
.night-banner {
  width: 100%;
  background: #1b1d1f;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  margin-bottom:50px;
}

.night-banner-inner {
  width: 85%;
  max-width: 1100px;
  background: #a9502c;
  padding: 55px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  box-sizing: border-box;
}

.night-banner-image {
  flex: 0 0 54%;
}

.night-banner-image img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  display: block;
}

.night-banner-text {
  flex: 1;
  color: #fceecd;
  max-width: 420px;
}

.night-banner-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #1b1d1f;
  margin: 0 0 38px;
}

.night-banner-text p {
  font-family: "Merriweather", serif;
  line-height: 1.8;
  font-weight: 300;
  margin: 0;
  color: #fceecd;
}

/* ===== NIGHT:SECTION2 ===== */
.evening-highlights {
  width: 100%;
  background: #1b1d1f;
  margin-bottom:100px;
  border:none;
}

.highlight-card {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #1b1d1f;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(80%);
}

.highlight-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 2;
}

.highlight-content h1 {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.8;
  color: #fceecd;
}

.highlight-content p {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Merriweather", serif;
  line-height: 1.8;
  font-weight: 300;
  color: #fceecd;
  padding-bottom:50px;
}

.focus-card {
  border-bottom: none;
  margin-top: -1px;
}

.sips-card .highlight-content {
  max-width: 820px;
}

.sips-card .highlight-content h1 {
  margin-bottom: 20px;
}

.sips-card .highlight-content p {
  max-width: 760px;
}

/* ===== NIGHT:MUSIC ===== */
.night-picks-section {
      width: 100%;
      max-width: 1100px;
      padding: 0 35px 0 100px;
    }

    .night-picks-title {
      font-family: "Playfair Display", serif;
      font-size: 40px;
      font-weight: 700;
      line-height: 1.8;
      margin-bottom: 12px;
      color: #fceecd;
    }

    .night-picks-subtitle {
      line-height: 1.8;
      color: #fceecd;
      margin-bottom: 28px;
      max-width: 650px;
    }

    .night-picks-top-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 100px;
      height: 54px;
      padding: 0 28px;
      border: 2px solid #fceecd;
      background: transparent;
      color: #fceecd;
      font-family: "Merriweather", sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      margin-bottom: 45px;
    }

@media (hover: hover) and (pointer: fine) {
    .night-picks-top-btn:hover {
      background: #fceecd;
      color: #1b1d1f;
    }
}

 .player-shell {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 520px;
  margin-left: 6%;
  padding-left: 250px;
  top: 20px;
  bottom: 50px;
}

.player-visual {
  position: relative;
  width: 100%;
  height: 450px;
  margin-bottom: 0;
  overflow: hidden;
}

/* moving vinyl behind music box */
.vinyl {
  position: absolute;
  top: 35px;
  left:350px;
  width: 350px;
  height: 350px;
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  will-change: transform, opacity;
}

.vinyl .record-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fceecd;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vinyl .record-wrap::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #1b1d1f;
  z-index: 2;
}

.vinyl .record-wrap::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fceecd;
  z-index: 3;
}

.record-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.14;
  z-index: 1;
}

.vinyl.swap-out-right {
  animation: vinylOutRight 0.7s ease forwards;
}

.vinyl.pre-swap-left {
  transform: translateX(-320px);
  opacity: 0;
}

.vinyl.swap-in-left {
  animation: vinylInLeft 0.7s ease forwards;
}

@keyframes vinylOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(320px);
    opacity: 0;
  }
}

@keyframes vinylInLeft {
  from {
    transform: translateX(-320px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes spinVinyl {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.record-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fceecd;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
}

.record-wrap.spinning {
  animation: spinVinyl 2.5s linear infinite;
}

/* music box in front of vinyl */
.music-box {
  position: absolute;
  left: 0;
  width: 525px;
  height: 300px;
  background: #a9502c;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px 10px;
  overflow: hidden;
}

.play-btn {
  position: absolute;
  top: 12px;
  right: 200px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fceecd;
  background: transparent;
  color: #fceecd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: rgba(252, 238, 205, 0.15);
  transform: scale(1.06);
}

.play-btn svg {
  width: 15px;
  height: 15px;
  fill: #fceecd;
  margin-left: 2px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #fceecd;
  margin-bottom: 0;
  z-index: 4;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: #fceecd;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  line-height: 1;
  padding: 20px 10px 20px 10px;
}

.ctrl-btn:hover {
  transform: scale(1.12);
}

.track-counter {
  font-size: 25px;
  font-family: "Playfair Display", serif;
  min-width: 42px;
  text-align: center;
  color: #fceecd;
}

.music-info {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 10px 10px 10px 20px;
  height: 100px;
  margin-top: -150px;
  margin-bottom: -60px;
  background: #1b1d1f;
  border: 1px solid #1b1d1f;
  width: 525px;
}

.track-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.3;
  color: #fceecd;
  min-width: 145px;
}

.vote-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 84px;
  height: 34px;
  border: 2px solid #fceecd;
  background: transparent;
  color: #fceecd;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0 14px;
}

.vote-btn:hover {
  background: #fceecd;
  color: #14181e;
}

.vote-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vote-box {
  min-width: 122px;
  min-height: 42px;
  background: #a9502c;
  color: #fceecd;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
}

.bottom-bar {
  position: relative;
  z-index: 4;
  margin-top: 45px;
  width: 525px;
  height: 30px;
  background: #a9502c;
}

/*toggle music -> movie*/
.content-block {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.content-block.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== NIGHT:MOVIE ===== */
.movie-player-shell {
  width: 100%;
  margin-left:20%;
  max-width: 1100px;
  margin-top: 30px;
  margin-bottom:80px;
}

.movie-top {
  width: 100%;
  background: #a9502c;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  box-sizing: border-box;
}

.movie-scene-wrap {
  position: relative;
  width: 100%;
  max-width: 730px;
  padding:40px 50px 40px 60px;
}

.movie-scene-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.movie-play-btn {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fceecd;
  background: #a9502c;
  color: #fceecd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.movie-play-btn:hover {
  transform: translateX(-50%) scale(1.06);
}

.movie-play-btn svg {
  width: 14px;
  height: 14px;
  fill: #fceecd;
  margin-left: 2px;
}

.movie-poster-wrap {
  width: 250px;
  flex-shrink: 0;
}

.movie-poster-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.movie-bottom {
  width: 100%;
  background: #1b1d1f;
  padding: 18px 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

.movie-left-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.movie-track-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.2;
  color: #fceecd;
}

.movie-track-name.poll-ended {
  font-size: 18px;
  line-height: 1.3;
}

.movie-vote-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 158px;
  height: 56px;
  border: 2px solid #fceecd;
  background: transparent;
  color: #fceecd;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 0 24px;
}

.movie-vote-btn:hover {
  background: #fceecd;
  color: #1b1d1f;
}

.movie-right-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
}

.movie-ctrl-btn {
  background: transparent;
  border: none;
  color: #fceecd;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: 0.3s ease;
}

.movie-ctrl-btn:hover {
  transform: scale(1.1);
}

.movie-track-counter {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #fceecd;
  min-width: 46px;
  text-align: center;
}

.movie-vote-box {
  width: fit-content;
  min-width: 280px;
  margin: -7% auto 22px;
  background: #a9502c;
  color: #fceecd;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 26px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  line-height: 1.4;
}

.movie-bottom-bar {
  width: 100%;
  height: 30px;
  background: #a9502c;
}

/*________________________________________________________________________________________________________________________________*/
/* ===== EVENT:CALENDAR ===== */
.events-page {
  width: 100%;
  min-height: 100vh;
  padding: 40px 40px 60px;
  background: #26384a;
  overflow: hidden;
}

.events-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #fceecd;
}

.events-layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.year-side {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-40px);
  flex-shrink: 0;
}

.year-side h2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 72px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fceecd;
  letter-spacing: 2px;
  line-height: 1;
}

.events-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* fixed display area */
.events-months-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  overflow: hidden;
  margin-bottom: 30px;
}

.month-group {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  min-height: 560px;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}

.month-group.active {
  display: flex;
}

.month-empty-space {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-month-text {
  color: rgba(252, 238, 205, 0.55);
  font-size: 24px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.events-bottom-bar {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 60px;
}

.current-month-label {
  font-size: 26px;
  color: #fceecd;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-left: 0;
  min-width: 0;
}

.event-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  width: 138px;
  flex-shrink: 0;
}

.event-nav button {
  width: 60px;
  height: 60px;
  border: none;
  background: #a9502c;
  color: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  padding: 0;
  flex: 0 0 60px;
}

.event-nav button:hover {
  background: #fceecd;
  transform:scale(1.05);
  transition:0.3s ease;
}

.event-nav button:active {
  transform: scale(0.96);
}

#prevBtn {
  clip-path: polygon(100% 0, 30% 50%, 100% 100%);
}

#nextBtn {
  clip-path: polygon(0 0, 70% 50%, 0 100%);
}

.event-card {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 230px;
  height: 560px;
  background: #a9502c;
  border: 3px solid #fceecd;
  padding: 24px 18px 18px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: flex 0.45s ease, max-width 0.45s ease, transform 0.35s ease, opacity 0.3s ease;
}

.event-card:hover,
.event-card.active {
  flex: 2.2;
  max-width: 520px;
}

.event-top {
  position: relative;
  z-index: 2;
}

.event-day,
.event-month,
.event-time,
.event-name,
.event-desc,
.event-category {
  color: #26384a;
  transition: color 0.35s ease;
}

.event-card:hover .event-day,
.event-card:hover .event-month,
.event-card:hover .event-time,
.event-card:hover .event-name,
.event-card:hover .event-desc,
.event-card:hover .event-category,
.event-card.active .event-day,
.event-card.active .event-month,
.event-card.active .event-time,
.event-card.active .event-name,
.event-card.active .event-desc,
.event-card.active .event-category {
  color: #fceecd;
}

.event-day {
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 8px;
}

.event-month {
  font-size: 42px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.event-time {
  font-size: 18px;
  text-align: right;
  margin-top: -58px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.event-card:hover .event-time,
.event-card.active .event-time {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.event-name {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 90%;
}

.event-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

.event-image {
  width: 110px;
  height: 110px;
  object-fit: cover;
  display: block;
  transition: width 0.4s ease, height 0.4s ease, transform 0.4s ease;
}

.event-card:hover .event-image,
.event-card.active .event-image {
  width: 140px;
  height: 140px;
}

.event-desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  overflow-wrap: anywhere;
  max-height: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.event-card:hover .event-desc,
.event-card.active .event-desc {
  max-height: calc(1.5em * 3);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.event-category {
  text-align: center;
  font-size: 20px;
  margin-top: auto;
  padding-top: 20px;
  flex-shrink: 0;
}

.empty-msg {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #fceecd;
  padding: 80px 20px;
  border: 2px dashed rgba(252, 238, 205, 0.4);
}

/* ===== EVENT:GALLERY ===== */
.stories-section {
  width: 100%;
  background: #26384a;
  padding: 80px 0 90px;
  overflow: hidden;
}

.stories-header {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 50px;
  padding: 0 40px;
  box-sizing: border-box;
  color: #fceecd;
}

.stories-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 18px;
}

.stories-header p {
  line-height: 1.8;
  font-weight: 300;
  max-width: 720px;
}

.stories-slider-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.stories-slider-wrap.dragging {
  cursor: grabbing;
}

.stories-slider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transition: none;
}

.story-card {
  flex: 0 0 auto;
  width: 165px;
  height: 250px;
  margin-top: 55px;
  overflow: hidden;
  transition: width 0.45s ease, height 0.45s ease, margin-top 0.45s ease;
}

.story-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.story-card:hover {
  width: 290px;
  height: 375px;
  margin-top: 0;
}

/* ===== EVENT:PLAN PROCEDURES ===== */
.plan-event-section {
  width: 100%;
  background: #26384a;
  padding-top: 80px;
  padding-bottom: 20px;
}

.plan-event-header {
  text-align: center;
  margin-bottom: 40px;
  color: #fceecd;
}

.plan-event-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}

.plan-event-header p {
  line-height: 1.8;
  font-weight: 300;
}

.plan-cards-wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.plan-card {
  flex: 1;
  min-width: 0;
  height: 350px;
  perspective: 1200px;
  border-right: 1px solid #26384a;
}

.plan-card:first-child {
  border-left: 1px solid #26384a;
}

.plan-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.plan-card:hover .plan-card-inner {
  transform: rotateY(180deg);
}

.plan-card-front,
.plan-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
}

.plan-card-front {
  background: #fceecd;
  color: #1b1d1f;
}

.plan-card-front h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

.plan-card-back {
  background: #1b1d1f;
  color: #fceecd;
  transform: rotateY(180deg);
}

.plan-card-back p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  max-width: 150px;
}

/* ===== EVENT:FORM ===== */
.reservation-section {
  width: 100%;
  min-height: 100vh;
  background: #26384a;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 0;
  box-sizing: border-box;
  margin-bottom:50px;
}

.reservation-card {
  width: 100%;
  max-width: 420px;
  background: #1b1d1f;
  padding: 42px 36px 40px;
  box-sizing: border-box;
}

.reservation-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #fceecd;
  text-align: center;
  margin: 0 0 28px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 2px solid #fceecd;
  background: #fceecd;
  color: #1b1d1f;
  font-family: "Merriweather", serif;
  font-size: 13px;
  outline: none;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: #1b1d1f;
  opacity: 0.5;
}

.reservation-form textarea {
  height: 72px;
  padding: 10px 10px;
  resize: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fceecd;
}

.reservation-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fceecd;
  background-image: none;
  color: #1b1d1f;
  cursor: pointer;
}

.reservation-form select option {
  background: #fceecd;
  color: #1b1d1f;
}

.select-wrap {
  position: relative;
  left:-2px;
}

.select-wrap::after {
  content: "˅";
  position: absolute;
  right: 10px;
  top: 40px;
  color: #1b1d1f;
  font-size: 16px;
  pointer-events: none;
}

input[type="datetime-local"] {
  color: #1b1d1f;
  color-scheme: dark;
}

input[type="datetime-local"]::-webkit-datetime-edit {
  color: #1b1d1f;
  opacity: 0.5;
}

input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper {
  opacity: 0.5;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(92%) sepia(11%) saturate(424%) hue-rotate(333deg) brightness(106%) contrast(98%);
  opacity: 1;
  cursor: pointer;
}

input[type="file"] {
  height: 38px;
  padding: 5px 10px;
  line-height: 26px;
  color: #fceecd;
  background: transparent;
}

input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: none;
  background: #fceecd;
  color: #1b1d1f;
  height: 26px;
  padding: 0 12px;
  cursor: pointer;
  font-family: "Merriweather", serif;
  font-size: 13px;
}

.reserve-btn {
  width: 110px;
  height: 38px;
  margin: 4px auto 0;
  border: none;
  background: #a9502c;
  color: #fceecd;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reserve-btn:hover {
  background: #fceecd;
  color:#a9502c;
  transition:0.3s ease;
}

.msg {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid #fceecd;
  background: rgba(252, 238, 205, 0.06);
  color: #fceecd;
  font-family: "Merriweather", sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

/*________________________________________________________________________________________________________________________________*/
/* ===== REWARDS:SECTION1 ===== */
.rewards-section {
  background: #26384a;
  padding: 80px 0;
  color: #fceecd;
  font-family: "Playfair Display", serif;
}

.rewards-container {
  width: 1100px;
  margin: 0 auto;
}

.rewards-subtitle {
  text-align: center;
  font-family: "Merriweather", sans-serif;
  font-weight:300;
  margin-bottom: 70px;
  line-height:1.8;
}

.rewards-title {
  font-size: 40px;
  margin-bottom: 40px;
}

.rewards-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

/* Reverse second row */
.rewards-row.reverse {
  grid-template-columns: 1fr 300px;
}

.rewards-card {
  background: #cfa667;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #1b1d1f;
}

.rewards-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.rewards-card p {
  font-weight:300;
  line-height:1.8;
  margin-bottom: 20px;
  font-family: "Merriweather", sans-serif;
}

.rewards-card button,
.rewards-card .reward-link {
  padding: 10px;
  width:200px;
  margin-left:20px;
  margin-top:-25px;
  display: inline-flex;
  justify-content:center;
  align-items: center;
  border: 3px solid #1b1d1f;
  background: transparent;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-weight:700;
  font-size:16px;
  color: #1b1d1f;
  text-decoration: none;
}

.rewards-card button:hover,
.rewards-card .reward-link:hover{
	background: #1b1d1f;
    color:#fceecd;
    transition:0.3s ease;
}

.rewards-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rewards-icon img{
  width: 150px;
  height: 150px;
}

.rewards-icon2 img{
  width: 150px;
  height: 150px;
  transform:translateY(-30px);
}

.rewards-row {
  align-items: stretch;
}

.rewards-image-box {
  height: 370px;
}

/* ===== REWARDS:SECTION2 ===== */
.rewards-progress {
  background: #26384a;
  padding: 80px 0;
  text-align: center;
  color: #fceecd;
  font-family: "Playfair Display", serif;
}

.rewards-progress h1 {
  font-size: 32px;
  margin-bottom: 50px;
}

.progress-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.circle-box {
  position: relative;
  width: 260px;
  height: 260px;
}

.progress-ring circle {
  fill: none;
  stroke-width: 10;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-bg {
  stroke: rgba(255,255,255,0.1);
}

.progress-bar {
  stroke: #cfa667;
  stroke-linecap: round;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  transition: 0.6s ease;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-text h2 {
  font-size: 48px;
  margin: 0;
}

.progress-text p {
  margin-top: 5px;
  font-size: 16px;
}

.reward-info h2 {
  margin-bottom: 20px;
}

.reward-icon {
  font-size: 50px;
  margin-bottom: 10px;
}

/* ===== REWARDS:SECTION3 ===== */
.reward-hero {
    display: block;
    background: #26384a;
    padding: 20px 0 70px;
  }

  .reward-hero-frame {
    position: relative;
    width: min(100%, 1100px);
    aspect-ratio: 2.7 / 1;
    margin: 0 auto;
    overflow: hidden;
  }

  .reward-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .reward-hero-copy {
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    padding: 28px 24px;
    background: #1b1d1f;
    color: #fceecd;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .reward-hero-copy p {
    margin: 0;
    font-family: "Merriweather", serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
  }

/*________________________________________________________________________________________________________________________________*/
/* ===== COMING:SECTION1 ===== */
    .workshop-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 70px 0 90px;
      position: relative;
      overflow: hidden;
	  margin-left:15px;
    }

    .workshop-container {
      width: 1110px;
      margin: 0 auto;
    }

    .workshop-title {
      text-align: center;
      color: #fceecd;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 80px;
      letter-spacing: 0.3px;
    }

    .workshop-title span {
	  font-size:25px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .workshop-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      width: 100%;
    }

    .workshop-card {
      position: relative;
      height: 475px;
      overflow: hidden;
    }

    .workshop-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .overlay-box {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 72%;
      min-height: 190px;
      background: rgba(0, 0, 0, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 30px;
    }

    .overlay-box p {
      color: #fceecd;
      line-height: 1.8;
      font-weight: 300;
    }

/* ===== COMING:SECTION2 ===== */
    .activity-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 40px 0 70px;
	  margin-bottom:-200px;
    }

    .activity-container {
      width: 1220px;
      margin: 0 auto;
    }

    .activity-title {
      text-align: center;
      color: #fceecd;
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 42px;
    }

    .activity-title span {
	  font-size:25px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .activity-layout {
      display: flex;
      align-items: stretch;
      gap: 30px;
    }

    .activity-text-box {
      width: 660px;
      min-height: 284px;
      background: #a9502c;
      padding: 35px 44px 30px;
      display: flex;
      align-items: center;
    }

    .activity-text-box p {
      color: #1b1d1f;
      line-height:1.8;
      font-weight: 300;
    }

    .activity-images {
      display: flex;
      gap: 30px;
    }

    .activity-images img {
      display: block;
      width: 250px;
      height: 282px;
      object-fit: cover;
    }

/* ===== COMING:SECTION3 ===== */
    .thoughts-section {
      width: 100%;
      min-height: 100vh;
      background: #26384a;
      padding: 60px 0 40px;
      position: relative;
      overflow: hidden;
    }

    .thoughts-container {
      width: 980px;
      margin: 0 auto;
    }

    .thoughts-title {
      font-size: 40px;
      color: #fceecd;
      margin-bottom: 35px;
      line-height: 1.1;
    }

    .thoughts-content {
      display: flex;
      align-items: center;
      gap: 98px;
      margin-left: 42px;
    }

    .thoughts-image img {
      width: 270px;
      height: 380px;
      object-fit: cover;
      display: block;
    }

    .thoughts-text {
      max-width: 430px;
    }

    .thoughts-text p {
      line-height: 1.8;
      color: #fceecd;
      margin-bottom: 18px;
      font-weight: 300;
    }

    .thoughts-footer-text {
      text-align: center;
      font-size: 30px;
      color: #fceecd;
      margin-top: 82px;
	  margin-bottom:50px;
      line-height: 1.2;
    }

/*________________________________________________________________________________________________________________________________*/
/* ===== FLOATING BUTTON ===== */
.floating-social {
      position: fixed;
      right: 20px;
      bottom: 120px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .floating-social.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .social-btn {
      width: 58px;
      height: 58px;
      border-radius: 50%;
	  border: none;
  	  outline: none; 
      background: #a9502c;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .social-btn:hover {
      transform: scale(1.08);
      background:#cfa667;
    }

    .social-btn img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

.social-btn.chat-trigger.hide {
  opacity: 0;
  pointer-events: none;
  z-index:997
}

/* ===== AI CHATBOX ===== */
.chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 29, 31, 0.55);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.chat-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.chat-modal {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(380px, calc(100vw - 40px));
  height: min(500px, calc(100vh - 60px));
  background: #fceecd;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.chat-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: #a9502c;
  color: #fceecd;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-title {
  display: flex;
  flex-direction: column;
}

.chat-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.chat-title p {
  font-family: "Merriweather", sans-serif;
  font-size: 13px;
  opacity: 0.9;
  margin-top: 4px;
}

.close-btn {
  background: none;
  border: none;
  color: #fceecd;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #cfa667;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fceecd;
  scroll-behavior: smooth;
}

.message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.5;
  font-size: 14px;
  word-wrap: break-word;
}

.message.bot {
  align-self: flex-start;
  background: #26384a;
  color: #fceecd;
  border-bottom-left-radius: 4px;
}

.message.user {
  align-self: flex-end;
  background: #cfa667;
  color: #fceecd;
  border-bottom-right-radius: 4px;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 16px;
  background: #fceecd;
}

.quick-questions button {
  border: 1px solid #a9502c;
  background: transparent;
  color: #a9502c;
  padding: 8px 12px;
  font-size: 12px;
  font-family: "Merriweather", sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.quick-questions button:hover {
  background: #a9502c;
  color: #fceecd;
}

.chat-input {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(38, 56, 74, 0.12);
  background: #26384a;
}

.chat-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px;
  font-size: 14px;
  font-family: "Merriweather", sans-serif;
  background: #cfa667;
  color: #fceecd;
}

.chat-input input::placeholder {
  color: rgba(252, 238, 205, 0.85);
}

.chat-input button {
  border: none;
  background: #a9502c;
  color: #fceecd;
  padding: 16px 18px;
  font-size: 14px;
  font-family: "Merriweather", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.chat-input button:hover {
  color: #cfa667;
}

/* ===== FOOTER ===== */
.footer {
  background:#1b1d1f;
  color: #fceecd;
  padding: 30px 70px 20px;
  font-family: "Playfair Display", serif;
}

.footernight {
  background:#26384a;
  color: #fceecd;
  padding: 30px 70px 20px;
  font-family: "Playfair Display", serif;
}

.footer-box {
  max-width: 1400px;
  height:370px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  transform: translateX(20px);
  height: 100px;
  max-width: 95%;
  display: block;
  margin-bottom:15px;
}

.footer-social {
  transform: translateY(20px);
  display: flex;
  gap: 5px;
  font-size: 38px;
}

.footer-social a {
  color: #fceecd;
  transition: 0.3s ease;
}

.footer-social img{
	width:60px;
	height:60px;

}
.footer-social img:hover {
  background: #a9502c;
  transition:0.3s ease;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(30px);
}

.footer-links a {
  color: #fceecd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #a9502c;
}

.footer-info {
  text-align: center;
  transform: translateY(30px);
}

.footer-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-info p {
  font-size: 20px;
  line-height: 1.45;
}

.footer-bottom {
  position: relative;
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
}

.back-to-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-80px);
  width: 75px;
  height: 75px;
  color: #a9502c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 75px;
  border-radius: 8px 8px 0 0;
  transition: 0.5s ease;
}

.back-to-top:hover {
  color: #cfa667;
}
