:root {
  --bg: #F5EFE7;
  --text: #1E1E1E;
  --sub: #6F6A64;
  --accent: #A68A64;
}

* {margin:0;padding:0;box-sizing:border-box;}

body {
  font-family:'Inter';
  background:var(--bg);
  color:var(--text);
}

/* NAV CONTAINER */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* GLASS PILL */
.nav-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 10px 25px;

  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.5);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

/* HOME ICON */
.home-icon {
  font-size: 16px;
  color: var(--text);
}

/* BOOKING BUTTON */
.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 6px 12px;
  border-radius: 20px;

  background: rgba(0,0,0,0.85);
  color: white;
  cursor: pointer;

  font-size: 12px;
}

/* COUNT BADGE */
#cart-count {
  background: white;
  color: black;
  padding: 2px 6px;
  border-radius: 10px;
  display: none;
}

/* HERO */
.hero {height:100vh;position:relative;overflow:hidden;}

.hero-bg {
  width:100%;height:100%;
  object-fit:cover;
  position:absolute;
  animation:zoom 20s infinite alternate;
}

@keyframes zoom {
  from {transform:scale(1.05);}
  to {transform:scale(1.15);}
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(246,242,236,0.4);
}

.hero-content {
  position:relative;
  z-index:2;
  text-align:center;
  top:40%;
  transform:translateY(-50%);
}

.hero h1 {font-family:'Playfair Display';font-size:64px;}
.hero p {margin-top:10px;color:var(--sub);}

.btn {
  margin-top:20px;
  padding:12px 30px;
  border:none;
  border-radius:30px;
  background:black;
  color:white;
}

/* SECTION */
.section {padding:80px 8%;}

h2 {font-family:'Playfair Display';margin-bottom:30px;}

/* SERVICES */
.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.service-card {
  position:relative;
  overflow:hidden;
  border-radius:15px;
}

.service-card img {
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.6s;
}

.service-card:hover img {transform:scale(1.1);}

.service-overlay {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  background:linear-gradient(transparent, rgba(0,0,0,0.6));
  color:white;
}

/* GLASS ADD BUTTON */
.add-btn {
  margin-top:10px;
  padding:8px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.3);
  backdrop-filter:blur(10px);
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.add-btn:hover {
  background:rgba(255,255,255,0.5);
}

/* ACTIVE STATE */
.add-btn.active {
  background: var(--accent);
  color: white;
  border:none;
}

/* GLASS */
.glass {
  backdrop-filter:blur(25px);
  background:rgba(255,255,255,0.6);
  padding:40px;
  border-radius:20px;
}

/* PANEL */
.booking-panel {
  position:fixed;
  right:-100%;
  top:0;
  width:320px;
  height:100vh;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(30px);
  padding:25px;
  transition:0.4s;
  z-index: 9999;
}

.booking-header-glass{
  margin-bottom: 50px;
}

.back-btn{
  cursor: pointer;
  margin-top: 5px;
  background-color: grey;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 10px;
}

.book{
  margin-bottom: 10px;
  font-weight: 700;
}

.booking-panel.active {right:0;}



.panel-item {
  display:flex;
  justify-content:space-between;
  padding:14px;
  background:white;
  border-radius:14px;
  margin-bottom:10px;
}

.controls button {
  width:28px;
  height:28px;
  border-radius:50%;
  border:none;
  background:black;
  color:white;
}

/* PANEL BUTTON */
/* PANEL BUTTON BASE */
.panel-toggle {
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;

  background: black;
  color: white;

  font-size: 12px;
  font-weight: 500;

  transition: all 0.25s ease;
}

/* BOOK STATE */
.panel-toggle:not(.active) {
  opacity: 0.85;
}

/* REMOVE STATE */
.panel-toggle.active {
  opacity: 1;
}

/* HOVER */
.panel-toggle:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* CLICK FEEDBACK */
.panel-toggle:active {
  transform: scale(0.95);
}
/* WHATSAPP BUTTON */
.panel-btn {
  margin-top:auto;
  padding:14px;
  border:none;
  border-radius:12px;
  background:#25D366;
  color:white;
  cursor:pointer;
}



/* FLOAT */
/* FLOAT BUTTON CONTAINER */
.floating-book {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 2000;
}

/* BUTTON STYLE */
.float-btn {
  padding: 14px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);

  backdrop-filter: blur(15px);
  background: rgba(255,255,255,0.35);

  color: var(--text);
  font-weight: 500;
  font-size: 14px;

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

/* HOVER (SUBTLE LUXURY) */
.float-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.55);
}

/* ACTIVE (CLICK FEEDBACK) */
.float-btn:active {
  transform: scale(0.96);
}

/* ANIMATION */
.fade-up {
  opacity:0;
  transform:translateY(40px);
  transition:1s;
  margin-bottom: 20px;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
}

/* ICON */
.contact-item i {
  font-size: 14px;
  opacity: 0.7;
}

/* PHONE LINK */
.contact-item a {
  text-decoration: none;
  color: var(--text);
  transition: 0.3s;
  position: relative;
}

.contact-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: 0.3s;
}

.contact-item a:hover::after {
  width: 100%;
}

/* HOVER EFFECT (subtle luxury) */
.contact-item a:hover {
  color: var(--accent);
}

.fade-up.show {
  opacity:1;
  transform:translateY(0);
}

/* SOCIAL SECTION */
.social-section {
  padding: 40px 8%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* mobile friendly */
}

/* BUTTON */
.social-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 30px;

  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.4);

  text-decoration: none;
  color: var(--text);
  font-size: 14px;

  transition: all 0.3s ease;
}

/* ICON */
.social-item i {
  font-size: 16px;
}

/* HOVER */
.social-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.6);
}

footer {
  text-align:center;
  padding:50px;
  font-size: 10px;
}

/* CUSTOM ALERT */
.custom-alert {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);

  padding: 12px 20px;
  border-radius: 30px;

  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.4);

  color: var(--text);
  font-size: 14px;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 9999;
}

/* SHOW STATE */
.custom-alert.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}