/* ═══════════════════════════════════════════════
   Milada Brumovská — fotografka
   Design: warm, elegant, minimal
   ═══════════════════════════════════════════════ */

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

:root {
  --ivory: #FAF7F2;
  --beige: #D4C5B2;
  --cinnamon: #B8856C;
  --gold: #C9A96E;
  --charcoal: #2C2C2C;
  --warm-white: #FFFFFF;
  --text-light: #7A7168;
  --bg-soft: #F5F0EA;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cinnamon);
}

p {
  max-width: 680px;
  color: var(--text-light);
}

a {
  color: var(--cinnamon);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ─── Layout ─────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Navigation ─────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.2;
}

.nav__logo small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cinnamon);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cinnamon);
  transition: width 0.3s;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ─── Hero ───────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--warm-white);
}

.hero__content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 8px;
  font-weight: 400;
}

.hero__content .subtitle {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  letter-spacing: 5px;
}

.hero__content .hero__claim {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* ─── Buttons ────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn--primary {
  background: var(--cinnamon);
  color: var(--warm-white);
  border-color: var(--cinnamon);
}

.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--warm-white);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border-color: var(--warm-white);
}

.btn--outline:hover {
  background: var(--warm-white);
  color: var(--charcoal);
}

.btn--dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--dark:hover {
  background: var(--charcoal);
  color: var(--warm-white);
}

/* ─── Categories Grid ────────────────────────── */

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
}

.category-card__overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.category-card__overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ─── About Preview ──────────────────────────── */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.about-preview__text h2 {
  margin-bottom: 20px;
}

.about-preview__text p {
  margin-bottom: 16px;
}

.about-preview__text .btn {
  margin-top: 16px;
}

/* ─── Testimonials ───────────────────────────── */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial {
  background: var(--warm-white);
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
}

.testimonial__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 20px;
  max-width: none;
}

.testimonial__author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cinnamon);
}

/* ─── CTA Section ────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--warm-white);
}

.cta-section h2 {
  margin-bottom: 16px;
  color: var(--warm-white);
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 30px;
}

/* ─── Portfolio / Gallery ────────────────────── */

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter button {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--beige);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--cinnamon);
  border-color: var(--cinnamon);
  color: var(--warm-white);
}

.masonry {
  columns: 3;
  column-gap: 16px;
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  overflow: hidden;
}

.masonry__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry__item:hover img {
  transform: scale(1.03);
}

/* ─── Pricing ────────────────────────────────── */

.pricing-category {
  margin-bottom: 60px;
}

.pricing-category h3 {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--warm-white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(212, 197, 178, 0.3);
  transition: box-shadow 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.pricing-card h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cinnamon);
  margin: 16px 0;
}

.pricing-card__price small {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-soft);
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card ul li::before {
  content: '✓ ';
  color: var(--cinnamon);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 40px;
}

/* ─── Contact ────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  color: var(--cinnamon);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info__item p {
  color: var(--charcoal);
}

.contact-info__item a {
  color: var(--charcoal);
}

.contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--beige);
  background: var(--warm-white);
  color: var(--charcoal);
  margin-bottom: 20px;
  transition: border-color 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cinnamon);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── Footer ─────────────────────────────────── */

.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 50px 0;
  text-align: center;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.footer__logo small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--cinnamon);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__social a:hover {
  color: var(--cinnamon);
}

.footer p {
  font-size: 0.8rem;
  max-width: none;
  color: rgba(255,255,255,0.3);
}

/* ─── Page Header ────────────────────────────── */

.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-soft);
}

.page-header .subtitle {
  margin-bottom: 12px;
}

/* ─── About Page ─────────────────────────────── */

.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-full__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  position: sticky;
  top: 100px;
}

.about-full__text h2 {
  margin-bottom: 24px;
}

.about-full__text p {
  margin-bottom: 20px;
}

.about-full__text blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cinnamon);
  padding: 30px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  margin: 30px 0;
  max-width: 680px;
}

/* ─── Lightbox ───────────────────────────────── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  background: none;
  border: none;
}

/* ─── Animations ─────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────── */

@media (max-width: 1024px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__hamburger {
    display: block;
    z-index: 101;
  }

  .hero__content h1 {
    font-size: 2.5rem;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-preview__img {
    aspect-ratio: 4/3;
  }

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

  .masonry {
    columns: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-full {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-full__img {
    position: static;
    aspect-ratio: 4/3;
  }

  .section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 50px;
  }
}
