/*
Theme Name: OtelTheme
Theme URI: https://example.com
Author: OtelTheme
Author URI: https://example.com
Description: A premium hotel homepage theme with light elegant design.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: oteltheme
Tags: hotel, elegant, light, premium
*/

/* ===========================
   GOOGLE FONTS
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Cinzel:wght@400;600;700&display=swap');

/* ===========================
   CSS VARIABLES / COLOR PALETTE
   =========================== */
:root {
  /* Primary Palette - Warm Ivory & Gold (ASFIYA Light) */
  --color-bg: #F5EFE4;
  /* Warm ivory background */
  --color-bg-alt: #EDE4D5;
  /* Softer cream */
  --color-bg-dark: #E2D5C0;
  /* Warm sand */
  --color-accent: #C9A96E;
  /* Antique gold (unchanged) */
  --color-accent-dark: #A8854E;
  /* Deeper gold */
  --color-text: #2C1F14;
  /* Dark warm brown */
  --color-text-soft: #7A5C40;
  /* Mid brown */
  --color-text-light: #B09070;
  /* Light brown/tan */
  --color-border: #DDD0BB;
  /* Warm sand border */
  --color-white: #FFFFFF;

  /* Typography */
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Jost', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --header-height: 90px;
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 239, 228, 0.96);
  /* var(--color-bg) lightly transparent */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.20);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(245, 239, 228, 0.99);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  height: 70px;
}

.header-inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Site Logo / Brand */
.site-branding {
  text-align: center;
  grid-column: 2;
}

.site-branding a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.site-branding .site-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}

.site-branding .site-tagline {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  display: block;
}

/* Navigation */
.nav-left {
  grid-column: 1;
  justify-self: start;
}

.nav-right {
  grid-column: 3;
  justify-self: end;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-left ul li a,
.nav-right ul li a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  /* dark text on light header */
  transition: color 0.3s ease;
  position: relative;
}

.nav-left ul li a::after,
.nav-right ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-left ul li a:hover::after,
.nav-right ul li a:hover::after {
  width: 100%;
}

.nav-left ul li a:hover,
.nav-right ul li a:hover {
  color: var(--color-accent);
}

/* Dropdown Menus */
.nav-left ul li,
.nav-right ul li {
  position: relative;
}

.nav-left ul li ul.sub-menu,
.nav-right ul li ul.sub-menu,
.nav-left ul li ul,
.nav-right ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: rgba(245, 239, 228, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 110, 0.20);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  padding: 10px 0;
  gap: 0;
  /* Remove gap from parent UL flex */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 100;
  pointer-events: none;
}

.nav-left ul li:hover>ul,
.nav-right ul li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-left ul li ul li,
.nav-right ul li ul li {
  width: 100%;
}

.nav-left ul li ul li a,
.nav-right ul li ul li a {
  display: block;
  padding: 12px 24px;
  font-size: 10px;
  color: var(--color-text-soft);
  white-space: nowrap;
}

.nav-left ul li ul li a::after,
.nav-right ul li ul li a::after {
  display: none;
  /* Hide bottom border animation on dropdown */
}

.nav-left ul li ul li a:hover,
.nav-right ul li ul li a:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-accent);
}


/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text);
  /* dark on light header */
  transition: all 0.3s ease;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background-color: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-brand {
  text-align: center;
}

.footer-brand .brand-circle {
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}

.footer-brand .brand-circle .brand-name {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.4;
}

.footer-brand .brand-circle .brand-tagline {
  font-family: var(--font-ui);
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}

.footer-social a {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

/* ===========================
   MAIN CONTENT WRAPPER
   =========================== */
.site-main {
  padding-top: var(--header-height);
}

/* ===========================
   HERO SECTION — Welcome → Video → Book Now
   =========================== */
.hero-section {
  background-color: var(--color-bg);
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--header-height) + 32px) 40px 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 700;
  color: rgba(201, 169, 110, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

/* 1. Welcome block */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-tagline-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  display: block;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
  margin: 0;
}

/* 2. Embedded video */
.hero-video-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(900px, 90vw);
  flex-shrink: 1;
  padding: 12px 0;
}

.hero-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-dark);
  overflow: hidden;
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* 3. Book Now Bar */
.hero-cta-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(900px, 90vw);
  flex-shrink: 0;
}

.btn-book {
  display: block;
  width: 100%;
  padding: 18px 40px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-book:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}


/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-accent-dark) 100%);
  cursor: pointer;
}

.video-play-btn {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(253, 246, 238, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  border-color: var(--color-bg);
  transform: scale(1.1);
}

.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(253, 246, 238, 0.8);
  margin-left: 4px;
}

/* ===========================
   WELCOME / ABOUT SECTION
   =========================== */
.welcome-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title-sub {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 50px;
}

.welcome-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.welcome-text h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 30px;
}

.welcome-text p {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  color: var(--color-text-soft);
  line-height: 1.9;
  margin-bottom: 24px;
}

.welcome-text p strong {
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-top: 40px;
  font-size: 20px;
}

/* ===========================
   ROOMS SECTION
   =========================== */
.rooms-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.rooms-header {
  text-align: center;
  margin-bottom: 60px;
}

.rooms-emblem {
  width: 100px;
  height: 120px;
  margin: 0 auto 40px;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rooms-emblem svg {
  width: 60px;
  height: 80px;
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 1.2;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

/* 5th card (Signature Pool Room) — centered full-width */
.rooms-grid .room-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
  width: 100%;
}

.room-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover img {
  transform: scale(1.05);
}

.room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 30, 35, 0.75) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

.room-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 246, 238, 0.9);
  background: rgba(61, 43, 31, 0.5);
  padding: 8px 16px;
  backdrop-filter: blur(4px);
}

/* ===========================
   FEATURES / EXPERIENCE SECTION
   =========================== */
.features-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.2;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
  padding: 0;
  overflow: hidden;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 400px;
}

.gallery-strip .gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-strip .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-strip .gallery-item:hover img {
  transform: scale(1.08);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-branding {
    grid-column: 2;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
    grid-column: 1;
    justify-self: start;
  }

  .site-branding {
    grid-column: 2;
    justify-self: center;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav a {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-text);
  }

  .hero-section {
    padding: calc(var(--header-height) + 20px) 20px 24px;
  }

  .hero-title {
    font-size: clamp(28px, 10vw, 54px);
    letter-spacing: 0.3em;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-video-wrap {
    padding: 12px 0;
    max-width: 100%;
  }

  .hero-cta-bar {
    max-width: 100%;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .gallery-strip .gallery-item {
    height: 200px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

  .container,
  .header-inner,
  .footer-inner,
  .video-wrapper {
    padding: 0 20px;
  }
}

/* ===========================
   CONTACT PAGE
   =========================== */

/* -- Hero Banner -- */
.contact-hero {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-alt) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  overflow: hidden;
  margin-top: var(--header-height);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(245, 239, 228, 0.7) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  margin: 0;
}

/* -- Body Layout -- */
.contact-section {
  padding: 80px 40px;
  background: var(--color-bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* -- Info Column -- */
.contact-hotel-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 36px;
  line-height: 1.1;
}

.contact-hotel-name span {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--color-text-soft);
  margin-top: 6px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.contact-detail-text p {
  margin: 0;
}

.contact-detail-text strong {
  font-weight: 600;
  color: var(--color-text);
}

.contact-detail-text a {
  color: var(--color-text-soft);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: var(--color-border);
  margin: 32px 0;
}

.contact-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-soft);
  transition: stroke 0.3s ease;
}

.contact-social-link:hover {
  border-color: var(--color-accent);
  background: rgba(201, 169, 110, 0.1);
}

.contact-social-link:hover svg {
  stroke: var(--color-accent);
}

/* -- Form Column -- */
.contact-form-wrap {
  padding-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-row {
  display: flex;
  gap: 16px;
}

.cf-row--half .cf-field {
  flex: 1;
}

.cf-field {
  display: flex;
  flex-direction: column;
}

.cf-full {
  flex: 1;
  width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-light);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-bg-dark);
}

.cf-submit {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-send {
  padding: 16px 60px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.cf-notice {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0;
}

/* -- Map -- */
.contact-map {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--color-border);
}

/* -- Mobile -- */
@media (max-width: 768px) {
  .contact-hero {
    height: 200px;
    padding-bottom: 32px;
  }

  .contact-section {
    padding: 60px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cf-row--half {
    flex-direction: column;
  }

  .btn-send {
    width: 100%;
    text-align: center;
  }
}

/* ===========================
 ROOM SINGLE TEMPLATE
 =========================== */
.room-template .room-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.room-template .room-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.room-template .room-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.4);
  z-index: 2;
}

.room-template .room-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.room-template .room-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.room-template .room-details-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.room-template .room-main-content {
  max-width: 900px;
  margin: 0 auto;
}

.room-template .room-overview-header {
  text-align: center;
  margin-bottom: 40px;
}

.room-template .room-subtitle {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}

.room-template .room-description {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-soft);
  margin-bottom: 50px;
  text-align: center;
}

.room-template .room-description p {
  margin-bottom: 20px;
}

.room-template .room-book-action {
  text-align: center;
  margin: 50px 0;
}

.room-template .btn-book-now {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
  text-decoration: none;
}

.room-template .btn-book-now:hover {
  background-color: transparent;
  color: var(--color-accent);
}

.room-template .room-facilities-wrap {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.room-template .facilities-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.room-template .facilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.room-template .facilities-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  position: relative;
  padding-left: 20px;
}

.room-template .facilities-list li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
}

/* Slider container for the gallery */
.room-gallery-slider {
  margin-top: 60px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.room-gallery-slider .gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.room-gallery-slider .room-gallery-item {
  flex: 0 0 100%;
  width: 100%;
}

.room-gallery-slider img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  display: block;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 239, 228, 0.8);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

@media (max-width: 768px) {
  .room-gallery-slider img {
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .room-template .room-gallery-grid {
    grid-template-columns: 1fr;
  }
}