* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #f5f1ea;
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

h1,
 h2,
 h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #2b2621;
}

h2 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 36rem;
  color: #6e6358;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #c89d6b, #b07a3b);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn.full-width {
  width: 100%;
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.two-cols {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .two-cols,
  .three-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(18, 16, 13, 0.92), rgba(18, 16, 13, 0.7));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f8f3ea;
}

.logo span {
  font-weight: 700;
}

.logo-with-image {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-logo-image {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .site-logo-image {
    height: 34px;
  }
}

.nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7b062;
  opacity: 1;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: #d7b062;
  transition: width 0.18s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: #f5eee2;
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15, 13, 11, 0.98);
    flex-direction: column;
    padding: 0.8rem 1.5rem 1.1rem;
    transform-origin: top;
    transform: scaleY(0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.18s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #f9f4eb;
  background-image:
    linear-gradient(to bottom, rgba(8, 7, 6, 0.85), rgba(10, 8, 7, 0.94)),
    radial-gradient(circle at top left, rgba(86, 132, 136, 0.5), transparent 55%),
    url("https://images.pexels.com/photos/3737932/pexels-photo-3737932.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
}

.hero-content {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 36rem;
}

.hero-kicker {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #f2e1c5;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #f1e6d3;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f3e3c8;
}

@media (max-width: 600px) {
  .hero-content {
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.about {
  background: #f5f1ea;
}

.about p {
  color: #5c5146;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge {
  font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ebe1d0;
  color: #5b4a35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-highlight .card {
  background: radial-gradient(circle at top left, rgba(212, 183, 135, 0.29), transparent 55%),
    #f9f3ea;
  border-radius: 1.1rem;
  padding: 2rem;
  border: 1px solid rgba(193, 160, 112, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.about-highlight ul {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
  color: #5c5146;
}

.about-highlight li {
  margin-bottom: 0.3rem;
}

.rituals {
  background: #efe7db;
}

.cards {
  margin-top: 1.5rem;
}

.card {
  background: #faf6ef;
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(214, 191, 150, 0.6);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
  transform: translateY(0) translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.card p {
  color: #5c5146;
}

.card-meta {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a7a63;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(214, 191, 150, 0.9);
  background-color: #fdf9f2;
}

.gallery {
  background: #f5f1ea;
}

.gallery-grid {
  margin-top: 1.5rem;
}

.gallery-item {
  border-radius: 0.9rem;
  padding: 3.2rem 1.4rem 1.4rem;
  position: relative;
  overflow: hidden;
  color: #f7f3ee;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, background-position 0.3s ease;
}

.gallery-title,
.gallery-text {
  position: relative;
  z-index: 1;
}

.gallery-title {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.gallery-text {
  font-size: 0.85rem;
  line-height: 1.5;
}

.gallery-item-large {
  grid-column: span 2;
  min-height: 260px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 55%);
  background: linear-gradient(to top, rgba(4, 4, 4, 0.9), transparent 55%);
  z-index: -1;
}

.gallery-item:nth-child(1)::before {
  background-image: url("../images/big room.jpg");
}

.gallery-item:nth-child(2)::before {
  background-image: url("../images/spa room 1.jpg");
}

.gallery-item:nth-child(3)::before {
  background-image: url("../images/spa room 2.jpg");
}

.gallery-item:nth-child(4)::before {
  background-image: url("../images/spa room 3.jpg");
}

.gallery-item:nth-child(5)::before {
  background-image: url("../images/spa room 4.jpg");
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.gallery-item:hover::before {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Public hamam image grid */
.publichamam-gallery {
  margin-top: 1.5rem;
}

.publichamam-item img {
  border-radius: 0.9rem;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.publichamam-item figcaption {
  font-size: 0.85rem;
  color: #5c5146;
}

/* Pool gallery specific backgrounds */
.pool-gallery .gallery-item:nth-child(1)::before {
  background-image: url("../images/pool1.jpg");
}

.pool-gallery .gallery-item:nth-child(2)::before {
  background-image: url("../images/pool2.jpg");
}

.pool-gallery .gallery-item:nth-child(3)::before {
  background-image: url("../images/pool3.jpg");
}

.rooms {
  background: #f0e7da;
}

.room-grid {
  margin-top: 1.8rem;
}

.room-card ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  color: #5c5146;
}

.room-image {
  border-radius: 0.9rem;
  margin: -1.4rem -1.5rem 1rem;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.room-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, 0.7), transparent 55%);
}

.room-card:hover .room-image {
  transform: scale(1.04);
}

.room-image-deluxe {
  background-image: url("../images/spa room 1.jpg");
}

.room-image-cave {
  background-image: url("../images/spa room 2.jpg");
}

.room-image-family {
  background-image: url("../images/spa room 3.jpg");
}

.room-image-spa {
  background-image: url("../images/spa room 4.jpg");
}

.room-image-lounge {
  background-image: url("../images/big room.jpg");
}

.pricing {
  background: #efe7db;
}

.price-card ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  color: #5c5146;
}

.price-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #b07a3b;
}

.contact {
  background: #f5f1ea;
}

.contact-details {
  list-style: none;
  margin: 1rem 0 1.2rem;
  color: #5c5146;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.opening-hours {
  color: #5c5146;
  margin-bottom: 1.2rem;
}

.map-placeholder {
  border-radius: 1rem;
  border: 1px dashed rgba(141, 121, 90, 0.7);
  padding: 1.4rem;
  font-size: 0.9rem;
  color: #8d795a;
  background: rgba(250, 245, 237, 0.9);
}

.contact-form {
  background: #faf6ef;
  border-radius: 1.1rem;
  padding: 1.6rem 1.7rem 1.5rem;
  border: 1px solid rgba(214, 191, 150, 0.7);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.booking-room-wrapper {
  margin-bottom: 1rem;
}

.booking-room-preview {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  background: #f9f3ea;
  border: 1px solid rgba(214, 191, 150, 0.7);
}

.booking-room-photo {
  flex: 0 0 90px;
  height: 70px;
  border-radius: 0.7rem;
  background-size: cover;
  background-position: center;
}

.booking-room-name {
  font-size: 0.9rem;
  color: #5c5146;
  font-weight: 500;
}

.booking-room-photo-deluxe {
  background-image: url("../images/spa room 1.jpg");
}

.booking-room-photo-cave {
  background-image: url("../images/spa room 2.jpg");
}

.booking-room-photo-family {
  background-image: url("../images/spa room 3.jpg");
}

.booking-room-photo-spa {
  background-image: url("../images/spa room 4.jpg");
}

.booking-room-photo-lounge {
  background-image: url("../images/big room.jpg");
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field-group label {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6d5d49;
}

.field-group input,
.field-group select,
.field-group textarea {
  border-radius: 999px;
  border: 1px solid rgba(177, 147, 106, 0.7);
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255, 253, 249, 0.9);
}

.field-group textarea {
  border-radius: 0.9rem;
  resize: vertical;
  min-height: 5rem;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: #b07a3b;
  box-shadow: 0 0 0 1px rgba(176, 122, 59, 0.25);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: #8a7a63;
}

.form-success {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #2b5a36;
}

.site-footer {
  background: #151210;
  color: #d1c1a5;
  padding: 1.5rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-inner .small {
  opacity: 0.7;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  border-radius: 4px;
  transform-origin: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.footer-logo:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  opacity: 1;
}

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 700px) {
  .footer-branding {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.4rem;
  }

  .footer-text {
    text-align: center;
    width: 100%;
  }
}

.notification {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 60;
}

.floating-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 50;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-btn-whatsapp {
  background: #25d366;
}

.floating-btn-email {
  background: #b07a3b;
}

.floating-btn-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  gap: 0.4rem;
  padding-inline: 1.2rem 1.3rem;
}

.floating-btn-instagram .insta-icon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.3rem;
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  position: relative;
}

.floating-btn-instagram .insta-icon::before,
.floating-btn-instagram .insta-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid #fff;
}

.floating-btn-instagram .insta-icon::before {
  inset: 3px;
}

.floating-btn-instagram .insta-icon::after {
  width: 3px;
  height: 3px;
  top: 3px;
  right: 3px;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.9rem;
  }
}

.notification-info {
  background: rgba(48, 99, 160, 0.95);
}

.notification-success {
  background: rgba(46, 125, 50, 0.95);
}

.notification-error {
  background: rgba(198, 40, 40, 0.95);
}

.admin-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #c89d6b, #b07a3b);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 0.75rem 0 0 0.75rem;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 55;
}

.admin-panel {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: #faf6ef;
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.35);
  padding: 1rem 1.1rem 1.3rem;
  transition: right 0.3s ease;
  z-index: 70;
  overflow-y: auto;
}

.admin-panel.active {
  right: 0;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(214, 191, 150, 0.9);
}

.admin-header h2 {
  font-size: 1.1rem;
}

.admin-close {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.admin-booking {
  border-radius: 0.8rem;
  border: 1px solid rgba(214, 191, 150, 0.9);
  padding: 0.8rem 0.9rem;
  background: #fffaf1;
  margin-bottom: 0.7rem;
}

.admin-booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.admin-booking-meta {
  font-size: 0.78rem;
  color: #7a6a58;
}

.admin-booking-status {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.admin-booking-status-pending {
  color: #ff9800;
}

.admin-booking-status-confirmed {
  color: #2e7d32;
}

.admin-booking-status-denied {
  color: #c62828;
}

.admin-booking-body {
  font-size: 0.82rem;
  color: #5c5146;
}

.admin-booking-body > div {
  margin-bottom: 0.15rem;
}

.admin-booking-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.btn-confirm,
.btn-deny {
  flex: 1;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  color: #fff;
}

.btn-confirm {
  background: #2e7d32;
}

.btn-deny {
  background: #c62828;
}

.admin-login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.admin-login-modal.active {
  display: flex;
}

.admin-login-dialog {
  width: min(380px, 90vw);
  background: #faf6ef;
  border-radius: 1rem;
  padding: 1.2rem 1.4rem 1.3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}
