:root {
  --color-bg: #f8f6f3;
  --color-bg-alt: #ffffff;
  /* primary in the palette is the teal from the logo */
  --color-primary: #13969a;
  --color-primary-soft: #d3f0f2;
  /* accent is the warm sun/orange from the logo */
  --color-accent: #ffaf2f;
  --color-accent-soft: #ffe4b3;
  --color-text: #162633;
  --color-text-soft: #5b6b7a;
  --color-border: rgba(22, 38, 51, 0.12);
  --shadow-soft: 0 14px 40px rgba(10, 34, 61, 0.16);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fff6e7 0, #f8f6f3 42%, #e8f5f6 100%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(
      to bottom,
      rgba(236, 239, 244, 0.98),
      rgba(230, 234, 240, 0.96),
      rgba(230, 234, 240, 0.9)
    );
  box-shadow: 0 6px 18px rgba(9, 25, 42, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe9c4, #ffbd54 45%, #ff9845 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 127, 106, 0.45);
}

.logo-image {
  width: 70px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  color: #0f202b;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
  transition: width 0.22s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-primary), #11b0b7);
  color: #fff;
  box-shadow: 0 10px 30px rgba(30, 127, 166, 0.45);
  font-weight: 500;
  font-size: 0.96rem;
}

.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.36rem 0.58rem;
  min-height: 33px;
  border-radius: 999px;
  border: 1px solid rgba(209, 233, 243, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(12, 45, 76, 0.16);
  cursor: pointer;
  font-family: inherit;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.98);
}

.lang-current {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
  display: none; /* скриваме кода EN/BG/RU, оставяме само флага */
}

.lang-caret {
  font-size: 1.3rem;
  color: var(--color-text-soft);
  transform: translateY(-1px);
}

.lang-flag {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}

.flag-en {
  background-image: url("../../images/icons/flag-en.png");
}

.flag-bg {
  background-image: url("../../images/icons/flag-bg.png");
}

.flag-ru {
  background-image: url("../../images/icons/flag-ru.png");
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 190px;
  padding: 0.35rem;
  border-radius: 16px;
  border: 1px solid rgba(209, 233, 243, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(12, 45, 76, 0.22);
  backdrop-filter: blur(12px);

  /* slide open/close */
  transform-origin: top right;
  transform: translateY(-6px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.16s ease-out, opacity 0.16s ease-out;
}

.lang-dropdown.is-open .lang-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  color: var(--color-text);
}

.lang-option:hover {
  background: rgba(19, 150, 154, 0.08);
}

.lang-option.is-active {
  background: linear-gradient(135deg, rgba(19, 150, 154, 0.14), rgba(255, 175, 47, 0.12));
  border: 1px solid rgba(19, 150, 154, 0.2);
}

.lang-label {
  font-size: 0.92rem;
  font-weight: 500;
}

/* HERO */

.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  background-image: linear-gradient(
    to bottom,
    rgba(7, 32, 55, 0.6),
    rgba(7, 32, 55, 0.35)
  );
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 75vh;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 127, 106, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 3rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-text p {
  font-size: 1rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.89);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
}

.hero-meta span {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(5, 24, 43, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  padding: 1.75rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 233, 243, 0.9);
  position: relative;
  color: var(--color-text);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(255, 175, 47, 0.65),
    rgba(19, 150, 154, 0.18),
    rgba(255, 152, 69, 0.7)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}

.hero-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.hero-card-btn {
  width: 100%;
  justify-content: center;
}

.hero-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-contact-buttons .hero-card-btn {
  flex: 1;
  min-width: 140px;
}

.hero-contact-buttons .btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #1fa955;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.hero-contact-buttons .btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.hero-contact-buttons .btn-viber {
  background: #7360f2;
  color: #ffffff;
  border-color: #5b4ec7;
  box-shadow: 0 10px 24px rgba(115, 96, 242, 0.3);
}

.hero-contact-buttons .btn-viber:hover {
  background: #6553dc;
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out, border-color 0.16s ease-out, color 0.16s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #11b0b7);
  color: #fff;
  box-shadow: 0 12px 30px rgba(30, 127, 166, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(30, 127, 166, 0.55);
}

.btn-secondary {
  background: #fff7e8;
  color: var(--color-text);
  border-color: var(--color-accent-soft);
}

.btn-secondary:hover {
  background: #ffe1b8;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary-soft);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: #e6f1f8;
}

.btn-full {
  width: 100%;
}

/* SECTIONS */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.88);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.3rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(209, 233, 243, 0.85);
  box-shadow: 0 10px 26px rgba(12, 45, 76, 0.06);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--color-text-soft);
}

/* ROOMS */

.rooms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2rem;
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.room-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(209, 233, 243, 0.9);
  box-shadow: 0 8px 20px rgba(12, 45, 76, 0.05);
}

.room-card h3 {
  margin: 0 0 0.1rem;
}

.room-meta {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.room-card ul {
  margin: 0 0 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.room-price {
  margin: 0;
  font-size: 0.9rem;
}

.rooms-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-box {
  background: linear-gradient(
    145deg,
    rgba(209, 233, 243, 0.9),
    rgba(255, 249, 244, 0.9)
  );
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.15rem;
  border: 1px solid rgba(209, 233, 243, 0.95);
}

.info-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.info-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.info-box p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

/* LOCATION */

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.location-points {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--color-text-soft);
}

.location-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(209, 233, 243, 0.9);
  box-shadow: 0 10px 26px rgba(12, 45, 76, 0.07);
}

.location-card h3 {
  margin: 0 0 0.5rem;
}

.location-card p {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.location-note {
  font-size: 0.85rem;
}

.location-map {
  margin-top: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 45, 76, 0.25);
  border: 1px solid rgba(209, 233, 243, 0.9);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(209, 233, 243, 0.9);
  box-shadow: 0 10px 26px rgba(12, 45, 76, 0.06);
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-name {
  font-weight: 600;
  color: var(--color-text);
}

.review-stars {
  color: #f5a623;
  font-size: 0.9rem;
}

.review-text {
  margin: 0;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 26px rgba(12, 45, 76, 0.12);
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
}

/* Placeholder gradient backgrounds – replace with real photos via CSS or inline styles */
.gallery-item-1 { /* Sea view from the garden */
  grid-row: span 2;
  background-image: url("../../images/gallery/gallery1-1.jpg");
}

.gallery-item-2 { /* Green garden & seating */
  background-image: url("../../images/gallery/gallery2-1.jpg");
}

.gallery-item-3 { /* Comfortable double room */
  background-image: url("../../images/gallery/gallery3-2.jpg");
}

.gallery-item-4 { /* Triple room for families */
  background-image: url("../../images/gallery/gallery4-1.jpg");
}

.gallery-item-5 { /* Evening lights & atmosphere */
  background-image: url("../../images/gallery/gallery5-1.jpg");
}

.gallery-item-6 { /* Sozopol coastline nearby */
  background-image: url("https://images.pexels.com/photos/457882/pexels-photo-457882.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.gallery-item span {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.43), transparent 60%);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.lightbox-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--lightbox-bg);
  background-size: cover;
  background-position: center;
  filter: blur(26px);
  transform: scale(1.1);
  opacity: 0.8;
}

.lightbox-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain; /* показва цялата снимка, без рязане */
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 2;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  color: #e5edf5;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
}

/* BOOKING FORM */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.booking-points {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--color-text-soft);
}

.booking-card {
  background: rgba(255, 255, 255, 0.99);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(209, 233, 243, 0.95);
  box-shadow: 0 12px 28px rgba(12, 45, 76, 0.09);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field-inline {
  flex-direction: row;
  gap: 0.75rem;
}

.field-inline > div {
  flex: 1;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-soft);
}

input,
textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(185, 203, 219, 0.95);
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.14s ease-out, box-shadow 0.14s ease-out,
    background 0.14s ease-out;
}

input:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(41, 164, 203, 0.15);
  background: #ffffff;
}

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

.form-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.form-success {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #176c3a;
  background: #e2f6e8;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.form-success:not([hidden]) {
  display: inline-block;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  font-size: 0.94rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-list li:nth-child(1),
.contact-list li:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.contact-list li:nth-child(1) span,
.contact-list li:nth-child(2) span,
.contact-list li:nth-child(1) strong,
.contact-list li:nth-child(2) strong {
  font-weight: 600;
}

.contact-list li:nth-child(1) strong,
.contact-list li:nth-child(2) strong {
  color: var(--color-primary);
}

.contact-link {
  margin-top: 0.1rem;
  font-size: 0.88rem;
  word-break: break-all;
}

.contact-social-buttons {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.btn-social {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
}

.btn-facebook {
  background: #1450b8;
  color: #fff;
}

.btn-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #f56040 40%, #bc2a8d 75%, #4c68d7 100%);
  color: #fff;
}

.btn-tiktok {
  background: #000000;
  color: #fff;
}

.contact-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-soft);
}

.contact-card {
  background: linear-gradient(
    135deg,
    rgba(30, 127, 166, 0.95),
    rgba(41, 164, 203, 0.95)
  );
  color: #fff;
  border-radius: 20px;
  padding: 1.3rem 1.25rem;
  box-shadow: 0 14px 34px rgba(12, 45, 76, 0.5);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.contact-card ul li a {
  display: inline-block;
  padding: 0.3rem 0;
}

.contact-card a {
  text-decoration: underline;
}

/* FOOTER */

.site-footer {
  padding: 0.9rem 0 1.1rem;
  background: rgba(243, 245, 248, 0.95);
  border-top: 1px solid rgba(209, 233, 243, 0.9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #11b0b7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px rgba(30, 127, 166, 0.55);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
}

.footer-contact {
  margin: 0;
  font-size: 0.78rem;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 380px;
    margin-inline: auto;
  }

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

  .rooms-layout,
  .location-layout,
  .reviews-grid,
  .booking-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-text p {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    gap: 0.45rem;
  }

  .hero-meta span {
    font-size: 0.8rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }

  .gallery-item-1 {
    grid-row: span 1;
  }

  .field-inline {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1.1rem;
  }

  .hero-card,
  .booking-card,
  .contact-card {
    padding: 1.15rem 1.05rem;
  }

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

