@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --bg-base: #020D1A;
  --bg-card: #081624;
  --bg-section-alt: #040F1E;
  --accent-primary: #0EA5E9;
  --accent-secondary: #38BDF8;
  --text-primary: #F0F9FF;
  --text-muted: #7EB8D4;
  --gradient-hero: linear-gradient(160deg, #020D1A 0%, #0A1F35 100%);
  --radius-card: 12px;
  --transition: 0.25s ease;
  --container: min(1160px, 92vw);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: var(--accent-secondary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

p,
li,
label,
input,
textarea,
select,
button {
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.25);
  transform: translateY(-4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 0.72rem 1.4rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: #0284c7;
  color: #fff;
}

.btn-secondary {
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
  display: block;
}

img.logo-img {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  object-fit: contain;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  background: linear-gradient(90deg, #0EA5E9 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  isolation: isolate;
}

.site-header.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(2, 13, 26, 0.88);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.header-wrap {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(240, 249, 255, 0.4);
  border-radius: 8px;
  padding: 0.35rem 0.6rem;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(2, 13, 26, 0.92), rgba(2, 13, 26, 0.38) 55%, rgba(2, 13, 26, 0.2));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 860px;
  padding-inline: 1rem;
}

.hero-subtitle {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.hero-ctas {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

.media-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.room-cards,
.team-grid,
.testimonial-grid,
.service-grid,
.menu-grid,
.legal-grid {
  display: grid;
  gap: 1.2rem;
}

.room-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  padding: 1.2rem;
}

.price {
  color: var(--accent-secondary);
  margin-block: 0.5rem 0.6rem;
  font-weight: 700;
}

.feature-hero {
  position: relative;
  min-height: 55vh;
  display: grid;
  place-items: center;
  margin-top: 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 26, 0.55);
}

.feature-hero .content {
  position: relative;
  max-width: 760px;
  text-align: center;
  padding: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.gallery-item img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 189, 248, 0.2);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item:hover::after {
  opacity: 1;
}

.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  max-width: 100%;
  height: 80px;
  display: block;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.person-card {
  overflow: hidden;
}

.person-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.person-content {
  padding: 1rem;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial {
  padding: 1rem;
}

.stars {
  margin-bottom: 0.6rem;
}

.stars svg {
  width: 100px;
  height: 20px;
  fill: #facc15;
}

.stats-strip {
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.2), rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.2));
  background-size: 220% 220%;
  animation: shimmer 8s linear infinite;
  border-block: 1px solid rgba(56, 189, 248, 0.3);
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
  gap: 1rem;
  padding: 1.2rem 0;
}

.stats-grid span {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--accent-secondary);
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion details {
  background: var(--bg-card);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-card);
  padding: 1rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion p {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(126, 184, 212, 0.38);
  background: #071321;
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding-top: 3rem;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-grid h4 {
  margin-bottom: 0.55rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(56, 189, 248, 0.18);
  padding: 1rem 0 1.4rem;
  display: grid;
  gap: 0.5rem;
}

.bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg-card);
  border-top: 1px solid var(--accent-primary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner[hidden] {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.page-hero {
  padding: 5.5rem 0 2.3rem;
  background: var(--gradient-hero);
}

.page-hero p {
  margin-top: 0.8rem;
  color: var(--text-muted);
}

.list {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.35rem;
}

.notice {
  margin-top: 0.75rem;
  color: #cdefff;
  font-size: 0.95rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-card);
}

th,
td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(126, 184, 212, 0.25);
}

th {
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-cards,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(2, 13, 26, 0.97);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    display: none;
    z-index: 1001;
  }

  .site-header.nav-open nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem max(4vw, 1rem);
  }

  .nav-links a {
    display: block;
    padding: 0.55rem 0;
  }

  .header-cta {
    display: none;
  }

  .room-cards,
  .menu-grid,
  .testimonial-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.8rem 0;
  }

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

  .modal-box {
    padding: 36px 24px;
  }
}
