@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700&family=Noto+Serif+Display:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Dosis", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.2;
  overflow-x: hidden;
}

:root {
  --gold: #96844c;
  --gold-hover: #7a6a3a;
  --dark: #1a1a1a;
  --light-bg: #f8f8f8;
  --beige: #f5f0e6;
}

h1, h2, h3 {
  font-family: "Noto Serif Display", serif;
  font-weight: normal;
}

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

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

/* === HLAVIČKA – GALATEA STYLE === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(12, 20, 33, 0.95), transparent);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header.scrolled {
  padding: 0.8rem 2rem;
  background: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-top {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.header-top a {
  color: white;
  text-decoration: none;
}

.header-top a:hover {
  color: var(--gold);
}

.header-logo {
  margin: 0.5rem 0;
  transition: font-size 0.4s;
  text-align: center;
  position: relative;
  height: 60px;
  width: 200px; /* Přidána pevná šířka pro kontejner loga */
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}

.header-logo img {
  width: 100%; /* Změněno na 100% pro vyplnění kontejneru */
  transition: opacity 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header-logo .logo-scrolled {
  opacity: 0;
}

.header.scrolled .header-logo .logo-main {
  opacity: 0;
}

.header.scrolled .header-logo .logo-scrolled {
  opacity: 1;
}

.header.scrolled .header-logo {
  width: 50px; /* Zmenšení šířky kontejneru po scrollu */
  height: 50px;
}

@media (min-width: 768px) {
  .header-logo {
    height: 150px;
    width: 300px;
    margin: 0;
  }
}
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.header-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.header-nav a {
  color: white;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.5rem;
}

/* ==========================================================
   DESKTOP STYLY (při min-width: 993px)
   Přepisují mobilní styly pro větší obrazovky
   ========================================================== */
@media (min-width: 993px) {
  .hamburger {
    display: none;
  }
  .header-nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2rem;
    font-weight: 500;
    font-size: 1rem;
    opacity: 1;
    pointer-events: all;
    background: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transition: gap 0.4s, font-size 0.4s;
  }
  .header-nav a {
    font-size: 1.5rem;
  }
  .header-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
    transform: translateX(-50%);
  }
  .header-nav a:hover::after {
    width: 100%;
  }
  .header.scrolled .header-nav {
    gap: 1.2rem;
    font-size: 0.9rem;
  }
  .header {
    padding: 1.5rem 2rem;
  }
  .header.scrolled {
    padding: 0.8rem 2rem;
  }
}
/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === BTN GOLD === */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-gold.large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.small-link a {
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: underline;
}

/* === FULLSCREEN SLIDER === */
.slideshow-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 90%;
  color: white;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  transform: translateY(160px);
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-content {
    transform: translateY(150px);
  }
  .hero-content h1 {
    font-size: 6rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  color: white;
  z-index: 11;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.4rem;
}

.swiper-pagination {
  bottom: 25px !important;
  z-index: 11;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* === CONTENT (nad sliderem) === */
.content {
  position: relative;
  z-index: 10;
  margin-top: 100vh;
  background: white;
}

.welcome {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.welcome p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.upp {
  text-transform: uppercase;
  color: #91a4aa !important;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .welcome h2 {
    font-size: 6rem;
    margin-bottom: 5rem;
  }
  .welcome p {
    font-size: 2.1rem;
    margin-bottom: 3rem;
  }
}
/* === PŘÍRODA === */
.nature {
  position: relative;
  background: white;
  text-align: center;
  padding: 5rem 0;
}

.nature h2 {
  font-size: 3.7rem;
  padding: 1rem 0 4rem 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.3rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.nature-highlights {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  padding: 0 2rem;
  max-width: 1400px;
}

.highlight {
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.highlight img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.highlight-text {
  padding: 1.8rem;
}

.highlight h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlight p {
  font-size: 1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .nature-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  .nature h2 {
    font-size: 6rem;
  }
}
/* === UNIVERZÁLNÍ SEKCE S OBRÁZKEM A CTA === */
.feature-section {
  padding: 6rem 2rem;
  text-align: center;
}

/* Modifikátory pro různé barvy pozadí */
.feature-section.bg-beige {
  background: var(--beige);
}

.feature-section.bg-white {
  background: white;
}

.feature-section h2 {
  font-size: 3.7rem;
  padding: 1rem 0 4rem 0;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.feature-hero {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  max-width: 1000px;
  margin: 3rem auto 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-main-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 1.5rem 2.5rem;
  border-radius: 25px;
  color: white;
  text-align: center;
  width: 90%;
  max-width: 450px;
}

.feature-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.feature-cta p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.feature-cta .price {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === KONTAKT === */
.contact {
  padding: 6rem 2rem;
  background: var(--dark);
  color: white;
  text-align: center;
}

.contact h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 4rem auto 2rem;
  max-width: 1000px;
  text-align: center;
}

.contact-column h4 {
  font-family: "Dosis", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.contact-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-column a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-column a:hover {
  border-bottom-color: var(--gold);
}

.account-info {
  margin-top: 3rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .contact-details {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* === PARALLAX SECTION (univerzální) === */
.parallax-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden; /* Zabrání případnému přetékání obsahu */
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.6));
  z-index: -1;
}

.parallax-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  padding: 2rem; /* Přidáno pro lepší zobrazení na menších obrazovkách */
}

.parallax-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.parallax-content p {
  font-size: 1.7rem;
  margin: 1.5rem 0;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .parallax-content h2 {
    font-size: 6.5rem;
  }
  .parallax-content p {
    font-size: 2rem;
  }
}
/* === GALERIE - MASONRY COLUMNS === */
.collage {
  padding: 4rem 2rem;
}

.collage-grid {
  max-width: 1400px;
  margin: 0 auto;
}

/* Desktop: Masonry pomocí CSS columns */
@media (min-width: 768px) {
  .collage-grid {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .collage-item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  .collage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
  .collage-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .collage-item:hover img {
    transform: scale(1.08);
  }
}
/* Mobil: Swiper */
@media (max-width: 767px) {
  .collage-grid {
    display: none;
  }
  .collage-grid.swiper {
    display: block;
  }
  .collage-grid .swiper-slide {
    height: auto;
  }
  .collage-grid .swiper-slide img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
}
.rooms {
  padding: 6rem 2rem;
  background: var(--light-bg);
  text-align: center;
}

.rooms h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.rooms .subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.room-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.room-card:hover {
  transform: translateY(-12px);
}

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

.room-info {
  padding: 1.8rem;
  text-align: left;
}

.room-info h3 {
  font-family: "Mea Culpa", cursive;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.room-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--gold-hover);
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rooms h2 {
    font-size: 6rem;
  }
}/*# sourceMappingURL=main.css.map */