/* === Base === */
:root {
  --bg: #0b0d12;       /* фон */
  --text: #ffffff;     /* основний текст */
  --muted: #fff;    /* вторинний текст */
  --accent: #6aa6ff;   /* кнопка/посилання */
  --border: #232633;   /* лінії */
  --max-width: 1120px;
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
/*   background: radial-gradient(1100px 600px at 20% -8%, #141b2a 0%, transparent 55%),
              radial-gradient(900px 520px at 92% 6%, #1b2327 0%, transparent 50%),
              var(--bg); */
  line-height: 1.1;
  background-color:#f2f1ed;
}

/* === Containers === */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,18,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  border-radius: 30px;
    background-color: #042a2d;
    margin: 30px;
    padding: 10px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo {
  height: 40px;
  width: auto;
}

.header nav {
  display: flex;
  gap: 22px;
}

.header nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.header nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 700;
  background-image: linear-gradient(267.43deg, #73ed7c 4.95%, #019297 97.92%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(106,166,255,.25);
  text-decoration: none;
}

.btn:hover {
  box-shadow: 0 10px 28px rgba(106,166,255,.35);
}


/* === Breadcrumbs === */
.breadcrumbs {
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--text);
}

/* === Headline === */
.headline {
  padding: 0px;
  text-align: center;
  color:#042a2d;
  font-size:50px;
}



.headline h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.headline span {
  font-weight: 700;
    background-image: linear-gradient(267.43deg, #73ed7c 4.95%, #019297 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
}

/* === Booking embed === */
.booking {
  padding: 24px 0 64px;
}

.embed-card {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 6px 28px rgba(0,0,0,.25);
}

.embedded-booking {
  display: block;
  width: 100%;
}

/* === Footer === */
.footer {
     border-top: 1px solid var(--border);
    background-color: #042a2d;
    border-radius: 30px;
    padding: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 10px;
    display: flex;
    justify-content: space-between;
}



.footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}

.footer nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer nav a:hover {
  color: var(--text);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.socials a{display:inline-flex;font-size:20px;color:var(--muted);border-radius: 50px;
    border: 1px solid #fff;
    width: 50px;
    height: 50px;}
.socials a:hover{color:#fff}

@media (max-width:768px){
	.header nav{display: none !important;}
  .headline{font-size:24px;}
  .footer{flex-direction:column}
}


