/* === FLOWER COFFEE DESIGN (Atmospheric Flow) === */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* --- ZÁKLADNÍ NASTAVENÍ --- */
#fc-design-root {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  line-height: 1.8; /* Větší řádkování pro vzdušnost */
  width: 100%;
}

#fc-design-root h1, 
#fc-design-root h2, 
#fc-design-root h3 { 
  font-family: 'Cormorant Garamond', serif; 
  line-height: 1.2;
}

.fc-script { 
  font-family: 'Great Vibes', cursive; 
  color: #c5a880 !important;
  font-size: 3rem; /* Větší písmo */
  margin-bottom: 15px;
  display: block;
}

/* --- HERO SEKCE --- */
.fc-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-attachment: fixed; /* Parallax */
  background-position: center;
  background-size: cover;
  padding: 100px 20px;
}
.fc-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.fc-hero-content { position: relative; z-index: 2; max-width: 800px; }

.fc-hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.fc-hero p { color: #eee; font-size: 1.3rem; margin-bottom: 50px; font-weight: 300; }

.fc-btn-hero {
  padding: 18px 50px; border: 1px solid #c5a880; color: #fff; text-decoration: none;
  text-transform: uppercase; letter-spacing: 2px; transition: 0.3s;
}
.fc-btn-hero:hover { background: #c5a880; color: #000; }


/* --- TEXTOVÉ BLOKY (Vzdušné) --- */
.fc-content-block {
  padding: 120px 20px;
  background: #fff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.fc-content-block h2 { font-size: 3.5rem; color: #3a4f41; margin-bottom: 30px; }
.fc-content-block p { font-size: 1.15rem; margin-bottom: 25px; color: #666; }


/* --- PARALLAX PŘEDĚLY (Velké fotky) --- */
.fc-parallax-separator {
  height: 60vh; /* Výška přes půl obrazovky */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Jemný překryv pro oddělení */
.fc-parallax-separator::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3);
}
/* Citát uprostřed fotky */
.fc-separator-text {
  position: relative; z-index: 2;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  text-align: center;
  padding: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


/* --- CENÍK (Elegantní styl) --- */
.fc-menu-container {
  background: #fdfbf7; /* Jemně béžová */
  padding: 80px 40px;
  border-radius: 4px;
  margin-top: 40px;
  border: 1px solid #eaddcf;
}
.fc-menu-list { width: 100%; border-collapse: collapse; text-align: left; }
.fc-menu-list td { padding: 12px 0; border-bottom: 1px dashed #dcdcdc; font-size: 1.1rem; }
.fc-menu-list td:last-child { text-align: right; color: #c5a880; font-weight: 600; }
.fc-menu-category { 
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #3a4f41; 
  padding-top: 40px !important; border-bottom: none !important; text-align: center !important;
}


/* --- KONTAKTY (Čisté karty) --- */
.fc-footer-section { padding: 100px 20px; background: #2c2c2c; color: #fff; text-align: center; }
.fc-footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px; max-width: 1200px; margin: 60px auto;
}
.fc-footer-card h3 { color: #c5a880; font-size: 1.8rem; margin-bottom: 20px; }
.fc-footer-card p, .fc-footer-card a { color: #bbb; text-decoration: none; display: block; margin-bottom: 10px; font-size: 1.1rem; }
.fc-footer-card a:hover { color: #fff; }

.fc-copyright { border-top: 1px solid #444; padding-top: 30px; color: #777; font-size: 0.9rem; }

/* Mobilní úpravy */
@media (max-width: 768px) {
  .fc-hero h1 { font-size: 3rem; }
  .fc-content-block { padding: 80px 20px; }
  .fc-parallax-separator { height: 40vh; background-attachment: scroll; } /* Vypnutí parallaxu na mobilu pro výkon */
  .fc-menu-container { padding: 40px 20px; }
}
