/* ===========================
   ZÁKLADNÉ NASTAVENIA
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* ===========================
   NAVIGÁCIA
   =========================== */
header {
  background: #fff;
  padding: 1rem 5%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 80px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  position: relative;
}

/* Plynulé podčiarknutie v menu */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e67e22;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #e67e22;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-icon {
  background: #e67e22;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
  transition: transform 0.3s;
}

.logo-wrapper:hover .logo-icon {
  transform: rotate(-10deg);
}

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

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: #e67e22;
  letter-spacing: 4px;
  margin-top: 4px;
}

/* ===========================
   HAMBURGER MENU (mobil)
   =========================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animácia hamburger → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ===========================
   KONZISTENTNÉ NADPISY SEKCIÍ
   =========================== */
.features h2,
.gallery h2,
.about-section h2,
.pricing h2,
.booking-section h2,
.contact h2 {
  font-size: 2rem;
  color: inherit;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
}

.features h2::after,
.gallery h2::after,
.about-section h2::after,
.booking-section h2::after,
.contact h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #e67e22;
}

/* ===========================
   HERO SEKCIA
   =========================== */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===========================
   TLAČIDLO
   =========================== */
.btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background 0.3s, transform 0.2s;
  font-weight: 600;
}

.btn:hover {
  background: #d35400;
  transform: translateY(-2px);
}

/* ===========================
   SEKCIA UBYTOVANIE
   =========================== */
.features {
  padding: 70px 5%;
  text-align: center;
  background: #f9f9f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
}

.icon-box {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 20px;
}

/* ===========================
   GALÉRIA
   =========================== */
.gallery {
  padding: 70px 5%;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
  display: block;
}

.photo:hover {
  transform: scale(1.03);
}

/* ===========================
   O NÁS
   =========================== */
.about-section {
  padding: 80px 5%;
  background-color: #ffffff;
  text-align: center;
}

.about-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===========================
   CENNÍK
   =========================== */
.pricing {
  padding: 70px 5%;
  background: #2c3e50;
  color: #fff;
  text-align: center;
}

.pricing h2 {
  color: #fff;
}

.pricing h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #e67e22;
}

.pricing-table {
  max-width: 600px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item strong {
  color: #e67e22;
}

/* ===========================
   REZERVÁCIA
   =========================== */
.booking-section {
  padding: 80px 5%;
  background-color: #f4f7f9;
  text-align: center;
}

.booking-form {
  max-width: 700px;
  margin: 40px auto 0;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.form-group-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e67e22;
}

.btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
  padding: 14px;
}

#form-status {
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

/* ===========================
   KONTAKT
   =========================== */
.contact {
  padding: 70px 5%;
  text-align: center;
}

.map-container {
  width: 100%;
  margin-top: 30px;
  filter: grayscale(20%);
  transition: filter 0.5s;
  border-radius: 10px;
  overflow: hidden;
}

.map-container:hover {
  filter: grayscale(0%);
}

.contact-details {
  padding: 40px 5%;
  display: flex;
  justify-content: center;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #e67e22;
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.contact-card h3 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-card p {
  margin: 10px 0;
}

.contact-card p i {
  color: #e67e22;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.contact-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #e67e22;
}

/* Sociálne siete */
.social-links {
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #2c3e50;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  font-size: 1.2rem;
  margin: 0 6px;
}

.social-icon:hover {
  background: #e67e22;
  transform: translateY(-3px);
}

/* ===========================
   PÄTIČKA
   =========================== */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ===========================
   ANIMÁCIE
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONZIVITA
   =========================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Hamburger viditeľný na mobile */
  .hamburger {
    display: flex;
  }

  /* Menu skryté predvolene na mobile */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    gap: 5px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    margin-left: 0;
    border-bottom: 1px solid #f0f0f0;
    padding: 8px 0;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a::after {
    display: none;
  }

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

@media (max-width: 600px) {
  .form-group-row {
    flex-direction: column;
    gap: 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .booking-form {
    padding: 25px 20px;
  }

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