/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:       #FFF5F0;
  --clr-cream:    #FCD2C8;
  --clr-rose:     #B57979;
  --clr-rose-light:#D4A5A5;
  --clr-rose-dark: #8F5D5D;
  --clr-blush:    #FCD2C8;
  --clr-text:     #2C1F1A;
  --clr-text-soft:#5A453D;
  --clr-white:    #FFFFFF;
  --clr-accent:   #F49184;
  --font-heading: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --max-w:        1140px;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(58,46,42,0.08);
  --shadow-lg:    0 12px 48px rgba(58,46,42,0.12);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-rose-dark); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--clr-text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
p  { margin-bottom: 1rem; color: var(--clr-text-soft); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,146,0.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(58,46,42,0.08); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-soft);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-rose);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content { z-index: 2; }

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-rose-dark);
  background: var(--clr-blush);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .highlight {
  color: var(--clr-rose);
  display: block;
  font-style: italic;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--clr-text-soft);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-image {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: linear-gradient(145deg, var(--clr-rose-light), var(--clr-blush));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: calc(100% + 24px); height: calc(100% + 24px);
  border-radius: calc(var(--radius) + 6px);
  border: 2px solid var(--clr-rose-light);
  z-index: -1;
  opacity: 0.5;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--clr-rose);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-rose-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,146,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 2px solid var(--clr-rose-light);
}
.btn-outline:hover {
  background: var(--clr-blush);
  border-color: var(--clr-rose);
  color: var(--clr-text);
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
section:nth-child(even) { background: var(--clr-cream); }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-rose-dark);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--clr-text-soft);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 280px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 32px;
}
.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-card-body p {
  margin-bottom: 24px;
}
.service-card-body .btn { width: 100%; justify-content: center; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-blush) 0%, var(--clr-bg) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 90vw, 1400px);
  height: clamp(180px, 27vw, 420px);
  background: url('../assets/Zora_logotip_color.png') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p {
  position: relative; z-index: 1;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--clr-cream); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 450px;
}

/* ===== BULLET LISTS ===== */
.styled-list { margin: 20px 0 28px; }
.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--clr-text-soft);
  line-height: 1.6;
}
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-rose);
}

/* ===== FAQ / Accordion style ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.faq-item h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
}
.faq-item p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--clr-blush);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,160,146,0.15);
  gap: 16px;
}
.price-item:last-child { border-bottom: none; }
.price-label { color: var(--clr-text-soft); flex: 1; }
.price-value {
  font-weight: 700;
  color: var(--clr-rose-dark);
  white-space: nowrap;
  font-size: 1.05rem;
}

.pricing-note {
  text-align: center;
  font-style: italic;
  color: var(--clr-text-soft);
  margin-top: 32px;
  font-size: 0.9rem;
}

/* ===== ABOUT (O meni) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; }

.credentials {
  margin-top: 32px;
  padding: 28px;
  background: var(--clr-blush);
  border-radius: var(--radius);
}
.credentials h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--clr-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-detail p { margin-bottom: 0; font-size: 0.95rem; }
.contact-detail a { color: var(--clr-accent); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: none;
  min-height: 400px;
}

.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--clr-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
}
.social-links a:hover {
  background: var(--clr-rose);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-rose-dark) 100%) !important;
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--clr-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-section .btn {
  background: var(--clr-white);
  color: var(--clr-rose-dark);
}
.cta-section .btn:hover {
  background: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-blush);
  color: var(--clr-text-soft);
  padding: 48px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--clr-rose-light);
}
.footer p { color: var(--clr-text-soft); margin-bottom: 4px; }
.footer a { color: var(--clr-rose-dark); }
.footer a:hover { color: var(--clr-rose); }
.footer-line { margin-bottom: 8px; }

/* ===== PROCESS STEPS ===== */
.process-steps { max-width: 700px; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-rose);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 6px;
}
.step-content p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--clr-blush);
  border-left: 4px solid var(--clr-rose);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.highlight-box p { margin-bottom: 0; font-style: italic; color: var(--clr-text); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Hero and CTA content should never be invisible */
.hero .hero-content,
.hero .hero-image,
.cta-section .container,
.page-hero h1,
.page-hero p {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--clr-rose-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-rose);
  box-shadow: 0 0 0 3px rgba(192,122,106,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .content-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-grid.reverse { direction: ltr; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-image { order: -1; }
  .hero-image img {
    max-height: 400px;
    border-radius: 24px;
    margin: 0 auto;
    max-width: 320px;
  }
  .hero-image::before { display: none; }
  .hero-content { text-align: center; }
  .hero-text { margin: 0 auto 40px; }
  .btn-group { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 320px; margin: 0 auto; }

  section { padding: 64px 0; }
  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,248,245,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    text-align: center;
    border-bottom: 1px solid var(--clr-blush);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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