@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --coral: #e8704a;
  --coral-dark: #d05a32;
  --green: #5a8a5e;
  --green-light: #8ab88e;
  --cream: #fdf6ee;
  --cream-dark: #f5ead8;
  --text: #3a3228;
  --text-light: #6b5f54;
  --white: #fff;
  --shadow: 0 4px 24px rgba(58,50,40,.10);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

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

img { display: block; width: 100%; object-fit: cover; }

.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .03em;
}
.btn:hover { background: var(--coral-dark); transform: translateY(-2px); }

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.section-title {
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(253,246,238,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(58,50,40,.07);
}

.nav-social { display: flex; gap: .9rem; align-items: center; }
.nav-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
  color: var(--text);
  font-size: 1rem;
}
.nav-social a:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }

.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: center;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, #eef4ee 55%, #ddeedd 100%);
  display: flex;
  align-items: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: .22;
  pointer-events: none;
}
.hero-deco-1 { width: 500px; height: 500px; background: var(--green-light); top: -100px; right: -100px; }
.hero-deco-2 { width: 300px; height: 300px; background: var(--green-light); bottom: -50px; left: 60%; }
.hero-deco-3 { width: 180px; height: 180px; background: var(--green); top: 30%; left: 45%; }

.hero-content { max-width: 560px; position: relative; z-index: 2; }

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--green);
  font-style: italic;
  margin-bottom: .3rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-tagline {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-img-wrap {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
  z-index: 2;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

#about {
  padding: 6rem 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--coral);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--coral);
}
.stat span { font-size: .85rem; color: var(--text-light); }

#sluzby {
  padding: 6rem 3rem;
  background: var(--cream);
}

.services-header { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(58,50,40,.15);
  border-bottom-color: var(--coral);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: .6rem;
}
.service-card p { font-size: .92rem; color: var(--text-light); line-height: 1.7; }

#recepty {
  padding: 6rem 3rem;
  background: var(--white);
}

.recipes-header { text-align: center; margin-bottom: 3.5rem; }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.recipes-grid .recipe-card:nth-child(4),
.recipes-grid .recipe-card:nth-child(5) {
  grid-column: span 1;
}
.recipes-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 740px;
  margin: 2rem auto 0;
}

.recipe-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  transition: transform .25s;
}
.recipe-card:hover { transform: translateY(-5px); }

.recipe-img { height: 200px; overflow: hidden; }
.recipe-img img { height: 100%; transition: transform .4s; }
.recipe-card:hover .recipe-img img { transform: scale(1.07); }

.recipe-body { padding: 1.4rem 1.5rem; }
.recipe-body h3 { font-size: 1.15rem; color: var(--green); margin-bottom: .4rem; }
.recipe-body p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }
.recipe-meta {
  display: flex;
  gap: 1rem;
  margin-top: .8rem;
  font-size: .82rem;
  color: var(--coral);
  font-weight: 700;
}

#kontakt {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
}

.contact-header { text-align: center; margin-bottom: 3.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}
.contact-item-text strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: .15rem; }
.contact-item-text a, .contact-item-text span { font-size: 1rem; color: var(--text); font-weight: 700; }
.contact-item-text a:hover { color: var(--coral); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; color: var(--green); margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 2px solid #e8e0d6;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--coral); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }

.captcha-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.captcha-row span { font-weight: 700; color: var(--green); font-size: 1.05rem; white-space: nowrap; }
.captcha-row input { max-width: 80px; }

.form-note { font-size: .8rem; color: var(--text-light); margin-top: .5rem; }
.form-success { display: none; padding: 1rem; background: #e6f4e7; border-radius: 10px; color: var(--green); font-weight: 700; text-align: center; margin-top: 1rem; }
.form-error { color: #c0392b; font-size: .85rem; margin-top: .3rem; display: none; }

.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 1rem; color: var(--white); }
.cta-banner p { font-size: 1.1rem; margin-bottom: 2rem; opacity: .9; }
.cta-banner .btn { background: var(--white); color: var(--green); }
.cta-banner .btn:hover { background: var(--cream-dark); }

footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: .88rem;
}
footer a { color: var(--coral); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 200; }
.hamburger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    box-shadow: -4px 0 30px rgba(0,0,0,.1);
    transition: right .3s;
    z-index: 150;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; }

  #hero { padding: 6rem 1.5rem 3rem; flex-direction: column; }
  .hero-img-wrap { position: relative; width: 100%; height: 300px; margin-top: 2rem; }
  .hero-name { font-size: 2.8rem; }
  .hero-tagline { font-size: 1.2rem; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .recipes-grid { grid-template-columns: 1fr 1fr; }
  .recipes-row2 { grid-template-columns: 1fr; max-width: 400px; }
  .form-row { grid-template-columns: 1fr; }
  #about, #sluzby, #recepty, #kontakt { padding: 4rem 1.5rem; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.9rem; }
}

#formGeneralError { margin-top: .5rem; font-size: .9rem; }
