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

:root {
  --primary-fuchsia: #d11275; /* Fuksja */
  --primary-orange: #f28500; /* Pomarańcz */
  --bg-color: #faf8f5; /* Bardzo jasny kremowy dla minimalizmu */
  --text-main: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --border-radius: 12px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary-fuchsia); }
h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary-orange); display: flex; align-items: center; gap: 0.5rem; text-align: center; justify-content: center;}
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--primary-fuchsia); }

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-fuchsia);
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-orange);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-fuchsia);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-orange);
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

/* Main Content Area */
main {
  flex: 1;
  padding: 100px 5% 50px 5%; /* Top padding for fixed header */
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 3rem;
  border-top: 4px solid var(--primary-fuchsia);
}
section:nth-of-type(even) {
  border-top-color: var(--primary-orange);
}

.placeholder-img {
  width: 100%;
  height: 250px;
  background-color: #eee;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  border: 1px dashed #ccc;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-fuchsia);
  color: var(--white) !important;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 10px rgba(209, 18, 117, 0.3);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-orange);
  box-shadow: 0 4px 10px rgba(242, 133, 0, 0.3);
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* Animations (Intersection Observer targets) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom UI blocks */
.timeline {
  border-left: 2px solid var(--primary-orange);
  padding-left: 1.5rem;
  margin-left: 1rem;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-fuchsia);
  border-radius: 50%;
}

.menu-list {
  list-style: none;
}
.menu-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}
.menu-list li:last-child {
  border-bottom: none;
}
.dish-name { font-weight: 600; }
.dish-desc { font-size: 0.85rem; color: var(--text-light); display: block; }
.dish-time { font-style: italic; color: var(--primary-orange); font-size: 0.9rem; }

.instax-steps {
  counter-reset: instax-counter;
  list-style-type: none;
}
.instax-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}
.instax-steps li::before {
  counter-increment: instax-counter;
  content: counter(instax-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background-color: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: fixed;
    right: 0;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 280px;
    max-width: 80%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: transform 0.4s ease-in-out;
    transform: translateX(100%);
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    padding-top: 2rem;
    gap: 1.5rem;
  }
  
  .nav-links.nav-active {
    transform: translateX(0);
  }
  
  .burger {
    display: flex;
  }
  
  /* Burger Animation */
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .burger.toggle .line2 {
    opacity: 0;
  }
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  main {
    padding-top: 90px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 1.5rem; }
}
