/* =========================
   ZÁKLAD & LUXUSNÝ STYL
========================= */
* {margin:0; padding:0; box-sizing:border-box;}
body {
  font-family:'Roboto', sans-serif;
  line-height:1.6;
  color:#333;
  background: #fdf6f0 url('https://www.transparenttextures.com/patterns/diamond-upholstery.png') repeat;
}

/* HEADER */
header {
  position: fixed;
  top:0;
  width:100%;
  background: linear-gradient(135deg, #f7d7c4, #f3bfa6);
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index:1000;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
header h2 {
  font-family:'Playfair Display', serif;
  letter-spacing:1px;
  color:#8b3e2f;
}
nav a {
  margin-left:30px;
  text-decoration:none;
  color:#555;
  font-weight:500;
  transition: color 0.3s;
}
nav a:hover {color:#8b3e2f;}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  max-width: 700px;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.hero-btn {
  padding: 15px 35px;
  background: linear-gradient(135deg, #c77d5f, #e6b89c);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}
.hero-btn:hover {background: linear-gradient(135deg, #b05f45, #d4a17f);}

/* GALÉRIA Pred & Po */
.before-after-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
  max-width: 900px;
}
.before-after-container div {position: relative; width: 100%;}
.before-after-container img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s;
}
.before-after-container img:hover {transform: scale(1.05);}
@media(min-width:768px) {
  .before-after-container {flex-direction: row;}
  .before-after-container div {max-width:45%;}
}

/* SECTIONS */
section {padding:100px 15%;}
.section-title {font-family:'Playfair Display', serif; font-size:36px; text-align:center; margin-bottom:50px;}
.reveal {opacity:0; transform:translateY(60px); transition:all 0.9s ease;}
.reveal.active {opacity:1; transform:translateY(0);}
.about p {max-width:800px; margin:auto; text-align:center;}

/* COURSES */
.course-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.course {
  background: linear-gradient(135deg, #fff5f0, #fff0eb);
  border-radius: 18px;
  overflow: hidden;
  max-width: 350px;
  text-align: center;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.course:hover {
  transform: translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
.course img.course-image {width:100%; height:200px; object-fit:cover;}
.course h3 {font-family:'Playfair Display', serif; font-size:1.5rem; margin:15px 0 10px;}
.course p {font-size:1rem; padding:0 15px 15px; color:#555;}
.course-btn {
  display:inline-block;
  margin-bottom:15px;
  padding:12px 25px;
  background: linear-gradient(135deg, #c77d5f, #e6b89c);
  color:white;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition: background 0.3s;
}
.course-btn:hover {background: linear-gradient(135deg, #b05f45, #d4a17f);}

/* CONTACT */
.contact form {max-width:500px; margin:auto; display:flex; flex-direction:column; gap:15px;}
.contact input, .contact textarea {padding:15px; border-radius:5px; border:1px solid #ddd; font-size:16px;}
.contact button {
  padding:15px;
  background: linear-gradient(135deg, #c77d5f, #e6b89c);
  color:white; border:none;
  border-radius:30px; font-size:16px; cursor:pointer;
}
.contact button:hover {background: linear-gradient(135deg, #b05f45, #d4a17f);}

/* FOOTER */
footer {
  text-align:center;
  padding:40px 15px;
  background:#111;
  color:white;
  font-size:0.9rem;
}

/* SOCIAL BUTTONS */
.social-buttons {
  position:fixed; bottom:30px; right:30px;
  display:flex; flex-direction:column; gap:15px; z-index:2000;
}
.social-buttons a {
  width:55px; height:55px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:26px; text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}
.social-buttons .ig {background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);}
.social-buttons .wa {background:#25D366;}

/* =========================
   LUXUSNÝ CENNÍK
========================= */
.luxury-pricing {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:30px;
  margin-top:40px;
}
.luxury-card {
  background: linear-gradient(135deg, #fff5f0, #fff0eb);
  border-radius:20px;
  padding:35px 25px;
  width:280px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
.luxury-card h3 {font-family:'Playfair Display', serif; font-size:1.4rem; margin-bottom:15px; color:#333;}
.luxury-card .luxury-price {font-size:2rem; font-weight:700; color:#c77d5f; margin-bottom:15px;}
.luxury-card ul {list-style:none; padding:0; margin-bottom:20px;}
.luxury-card ul li {margin:8px 0; color:#555; position:relative; padding-left:20px;}
.luxury-card ul li::before {
  content:"✦";
  position:absolute;
  left:0;
  color:#c77d5f;
}

/* RESPONSIVE */
@media(max-width:768px){
  section{padding:60px 10%;}
  .section-title{font-size:28px;margin-bottom:40px;}
  header{padding:15px 20px;}
  nav a{margin-left:15px;font-size:14px;}
  .hero-text h1{font-size:2rem;}
  .hero-text p{font-size:1rem;}
  .course{max-width:90%;}
  .luxury-card{width:90%;}
}
