/* ==== RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #2a2a2a;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A62639;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #A62639;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p, ul, ol, blockquote, .text-section {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

blockquote {
  border-left: 5px solid #A62639;
  padding-left: 20px;
  font-style: italic;
  background: #F2F2F2;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #444;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 24px 0 rgba(52,92,101,0.07);
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 18px 0 rgba(52,92,101,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #345C65;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: #A62639;
  border-radius: 6px;
  margin-top: 5px;
  transition: width 0.22s cubic-bezier(.61,.21,.21,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #A62639;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  font-family: 'Playfair Display', Georgia, serif;
  display: inline-block;
  background: #A62639;
  color: #fff !important;
  padding: 13px 38px;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 20px 0 rgba(166,38,57,0.14);
  letter-spacing: 0.04em;
  transition: 
    background 0.19s cubic-bezier(.71,0,.38,1),
    transform 0.13s, 
    box-shadow 0.19s;
  position: relative;
  border: 2px solid #A62639;
  text-shadow: 0 2px 6px rgba(52,92,101,0.10);
}
.cta-btn:hover, .cta-btn:focus {
  background: #345C65;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(52,92,101,0.13);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: #A62639;
  color: #fff;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #345C65;
  transform: scale(1.07);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(52,92,101,0.96);
  color: #fff;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.83,0,.17,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 0 70px 8px rgba(166,38,57,0.17);
}
.mobile-menu-close {
  margin: 28px 0 16px 22px;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  align-self: flex-start;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffcecb;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s, font-weight 0.14s;
  font-weight: 400;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2F2F2;
  font-weight: 700;
}

/* ==== HERO SECTION ==== */
.hero {
  background: #F2F2F2;
  border-radius: 0 0 48px 48px;
  min-height: 320px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  box-shadow: 0 10px 38px 0 rgba(166,38,57,0.09);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.55rem;
  color: #A62639;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(52,92,101,0.02);
}
.hero p {
  font-size: 1.19rem;
  color: #345C65;
}

/* ==== FEATURE GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-item {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(52,92,101,0.10);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 2px solid #F2F2F2;
  position: relative;
  transition: box-shadow 0.22s, transform 0.19s, border 0.18s;
}
.feature-item:hover,
.feature-item:focus-visible {
  box-shadow: 0 4px 28px rgba(166,38,57,0.19);
  border: 2px solid #A62639;
  transform: translateY(-4px) scale(1.015);
}
.feature-item img {
  height: 48px;
  width: 48px;
  display: block;
  background: #A62639;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 12px 0 rgba(166,38,57,0.13);
}
.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  color: #A62639;
}
.feature-item p {
  color: #345C65;
  font-size: 1rem;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: #fff;
  padding: 40px 0 60px 0;
  border-radius: 34px;
  margin-bottom: 60px;
  box-shadow: 0 6px 32px 0 rgba(166,38,57,0.09);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2F2F2;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 14px 0 rgba(52,92,101,0.07);
  max-width: 500px;
  border-left: 6px solid #A62639;
}
.testimonial-card blockquote {
  color: #222;
  background: none;
  border: none;
  padding-left: 0;
  font-size: 1.08rem;
}
.testimonial-author {
  font-size: 1rem;
  color: #345C65;
  opacity: 0.75;
  font-style: italic;
  margin-left: 8px;
}

/* ==== ABOUT SHORT / CONTACT ==== */
.about-short, .about {
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px rgba(166,38,57,0.06);
}
.about-short ul,
.about ul {
  margin-top: 12px;
  margin-left: 16px;
}
.about-short li,
.about li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.07rem;
  color: #345C65;
}
.about-short li:before, .about li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: #A62639;
  font-weight: bold;
  font-size: 1.15em;
}
.text-section {
  margin-bottom: 20px;
}

/* ==== CTA ==== */
.cta {
  background: #A62639;
  padding: 32px 0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  box-shadow: 0 4px 25px 0 rgba(166,38,57,0.11);
}
.cta .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta .cta-btn {
  background: #fff;
  color: #A62639;
  border-color: #fff;
  box-shadow: 0 2px 16px 0 rgba(255,255,255,0.23);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #345C65;
  color: #fff;
  border-color: #fff;
}
.cta .phone-shortcut {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ==== FOOTER ==== */
footer {
  background: #345C65;
  color: #fff;
  padding: 50px 0 20px 0;
  margin-top: 60px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 0 40px 0 rgba(52,92,101,0.18);
}
footer .container { }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 56px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
  text-decoration: underline;
  transition: opacity 0.16s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F2F2F2;
  opacity: 1.0;
}
.short-contact {
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #F2F2F2;
}
.short-contact a {
  color: #ffcecb;
  text-decoration: underline;
}
.social-media {
  display: flex;
  gap: 22px;
  align-items: center;
}
.social-media img {
  height: 32px;
  width: 32px;
  filter: brightness(7.5) saturate(0.87);
  opacity: 0.95;
  transition: filter 0.19s, opacity 0.19s;
}
.social-media img:hover {
  filter: brightness(2.5) saturate(1.6);
  opacity: 1;
}

/* ==== UTILITIES ==== */
@media (max-width: 1120px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 900px) {
  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 32px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.35rem; }
  .hero {
    min-height: unset;
    padding: 28px 0;
    border-radius: 0 0 30px 30px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .cta .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  footer .content-wrapper {
    gap: 23px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 11px;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .section, .about-short, .about, .testimonials {
    padding: 18px 6px;
    border-radius: 10px;
  }
  .hero { border-radius: 0 0 12px 12px; }
}

@media (max-width: 500px) {
  .testimonial-card { padding: 12px; }
  .feature-item { padding: 14px 8px; }
  .cta { border-radius: 8px; padding: 14px 0; }
  .cta .content-wrapper { gap: 10px; }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff6f7;
  color: #2a2a2a;
  box-shadow: 0 -4px 24px rgba(52,92,101,0.14);
  padding: 22px 20px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 200;
  border-radius: 28px 28px 0 0;
  animation: cookiein 0.68s cubic-bezier(.67,0,.33,1);
}
@keyframes cookiein {
  0% { transform: translateY(80px); opacity: 0; }
  80% { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  flex: 1 1 auto;
  font-size: 0.96rem;
  color: #345C65;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: #A62639;
  color: #fff;
  border-radius: 18px;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.18s, transform 0.12s;
  box-shadow: 0 2px 10px rgba(166,38,57, 0.11);
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: #345C65;
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #A62639;
  border: 2px solid #A62639;
}
.cookie-banner .cookie-btn.secondary:hover,
.cookie-banner .cookie-btn.secondary:focus {
  background: #A62639;
  color: #fff;
}

/* ==== COOKIE MODAL ==== */
#cookie-modal {
  position: fixed;
  z-index: 210;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(52,92,101,0.57);
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookiemodalin 0.7s cubic-bezier(.61,.21,.21,1);
}
@keyframes cookiemodalin {
  0% { opacity: 0; }
  60% { opacity: 1; }
  100% { opacity: 1; }
}
#cookie-modal.active {
  display: flex;
}
#cookie-modal .modal-content {
  background: #fff;
  padding: 36px 26px 30px 26px;
  border-radius: 22px;
  box-shadow: 0 4px 35px 0 rgba(166,38,57,0.19);
  max-width: 370px;
  width: 95vw;
  color: #345C65;
  text-align: left;
  animation: cookiemodalfadein 0.45s cubic-bezier(.61,.21,.21,1);
}
@keyframes cookiemodalfadein {
  0% { opacity: 0; transform: translateY(54px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
#cookie-modal h2 {
  font-size: 1.22rem;
  color: #A62639;
  margin-bottom: 13px;
}
#cookie-modal ul {
  margin: 0 0 10px 0;
}
#cookie-modal li {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 20px;
  background: #F2F2F2;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 2px solid #A62639;
  box-shadow: 0 1px 6px #f2a8b34c inset;
  transition: background .2s;
}
.cookie-toggle:checked {
  background: #A62639;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: transform .2s;
  box-shadow: 0 1px 5px #d15c6e33;
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
}
#cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 13px;
}
#cookie-modal .modal-close {
  background: none;
  color: #A62639;
  border: none;
  font-size: 1.45rem;
  position: absolute;
  top: 16px; right: 18px;
  cursor: pointer;
  padding: 0 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
#cookie-modal .modal-close:hover, #cookie-modal .modal-close:focus {
  color: #345C65;
}

@media (max-width: 600px) {
  .cookie-banner, #cookie-modal .modal-content {
    padding: 13px 5px 12px 8px;
    border-radius: 8px;
    font-size: 0.95rem;
  }
}

/* ==== CARD CONTAINER ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 8px rgba(166,38,57,0.14);
  border-radius: 22px;
  transition: box-shadow 0.18s, transform 0.18s;
  padding: 24px 20px 22px 20px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px rgba(52,92,101,0.11);
  transform: translateY(-2px);
}

/* ==== CONTENT GRID ==== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ==== TEXT-IMAGE SECTION (Not explicitly in HTML, but spec demands) ==== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ==== FEATURE ITEM ==== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== AMENITIES, SERVICES LIST ==== */
.amenities ul,
.services ul,
.benefits ul,
.rooms ul {
  margin-top: 11px;
  margin-left: 15px;
}
.amenities li,
.services li,
.benefits li,
.rooms li {
  margin-bottom: 9px;
  font-size: 1.05rem;
  color: #345C65;
  position: relative;
  padding-left: 17px;
}
.amenities li:before,
.services li:before,
.benefits li:before,
.rooms li:before {
  content: '•';
  color: #A62639;
  position: absolute;
  left: 0;
  font-size: 1.14em;
}

/* ==== FORM (FOR FUTURE) ==== */
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 15px;
  border: 2px solid #F2F2F2;
  margin-bottom: 16px;
  font-size: 1.06rem;
  background: #fff;
  color: #345C65;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border: 2px solid #A62639;
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  background: #F2F2F2;
  border-radius: 28px;
  padding: 40px 20px 54px 20px;
  margin: 42px auto;
  box-shadow: 0 6px 34px 0 rgba(166,38,57,0.09);
  text-align: center;
  max-width: 630px;
}
.thank-you h1 {
  color: #345C65;
  margin-bottom: 22px;
}
.thank-you .text-section {
  margin-bottom: 32px;
}

/* ==== ZÁSADY & TEXT POLICY ==== */
.privacy-policy, .gdpr, .cookies-policy, .terms-of-use {
  background: #fff;
  border-radius: 16px;
  padding: 38px 16px 38px 16px;
  margin-bottom: 48px;
  box-shadow: 0 2px 24px 0 rgba(166,38,57,0.06);
}

.privacy-policy h2,
.gdpr h2,
.cookies-policy h2,
.terms-of-use h2 {
  color: #A62639;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 8px;
  font-size: 1.21rem;
}

.privacy-policy ul,
.gdpr ul,
.cookies-policy ul,
.terms-of-use ul {
  margin-bottom: 20px;
  margin-left: 16px;
}
.privacy-policy li,
.gdpr li,
.cookies-policy li,
.terms-of-use li {
  font-size: 1rem;
  margin-bottom: 9px;
  color: #345C65;
  position: relative;
  padding-left: 18px;
}
.privacy-policy li:before, .gdpr li:before, .cookies-policy li:before, .terms-of-use li:before {
  content: '–';
  color: #A62639;
  position: absolute;
  left: 0;
  font-size: 1.18em;
}

/********** CUSTOM FONTS **********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

/* ========== ANIMATIONS ========== */
.card, .feature-item, .testimonial-card, .cta-btn, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.18s, transform 0.14s, color 0.17s, background 0.17s;
}

/* ========== FOCUS VISIBLE ========== */
.cta-btn:focus-visible,
.main-nav a:focus-visible,
.mobile-nav a:focus-visible,
.footer-menu a:focus-visible {
  outline: 2px solid #A62639;
  outline-offset: 2px;
}

/* ========== REMOVE GRID ========== */
/* No grid, no columns, only flex layouts, enforced above */
