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

:root {
  --green-dark: #2a1205;   /* espresso braon — primarna tamna */
  --green-mid: #5c2d0a;    /* srednja braon */
  --green-light: #4a7c3f;  /* zadržana za slučaj upotrebe */
  --ruby: #7a1c2e;         /* rubin crvena — akcenat */
  --gold: #c9a030;         /* toplo zlato */
  --gold-light: #e0b84a;
  --cream: #fdf5e8;
  --cream-dark: #f0e6d0;
  --brown-dark: #1a0a04;
  --text-dark: #1a1a1a;
  --shadow: 0 4px 20px rgba(0,0,0,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
  display: block;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #1a0802 0%, var(--green-dark) 40%, var(--ruby) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,160,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero-label {
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2rem;
  display: block;
  opacity: 0.9;
}

.hero-logo {
  width: clamp(220px, 35vw, 380px);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}

.hero-since {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 3rem;
}

.hero-divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  padding: 0.9rem 2.5rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-weight: 700;
}

.btn-primary {
  background: var(--gold);
  color: #1a0802;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,75,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 400;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  letter-spacing: 1px;
}

.btn-gold:hover {
  background: var(--gold);
  color: #1a0802;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,75,0.35);
}

.btn-call {
  background: var(--ruby);
  color: var(--cream);
  font-weight: 700;
}

.btn-call:hover {
  background: #9a2438;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122,28,46,0.35);
}

/* ============ SECTIONS ============ */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--green-dark); color: var(--cream); }

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-dark .section-title { color: var(--cream); }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.section-divider-line { width: 50px; height: 1px; background: var(--gold); }
.section-divider-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

.section-desc {
  max-width: 580px;
  margin: 0.75rem auto 0;
  color: #777;
  line-height: 1.9;
  font-size: 0.95rem;
}

.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* ============ PECENJE BANNER ============ */
.pecenje-banner {
  background: var(--cream-dark);
  padding: 5rem 2rem;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.pecenje-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pecenje-badge {
  display: inline-block;
  background: var(--ruby);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pecenje-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pecenje-desc {
  color: #666;
  line-height: 1.9;
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.pecenje-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pecenje-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pecenje-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pecenje-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 700;
}

.pecenje-info-item span {
  font-size: 0.83rem;
  color: #888;
}

.pecenje-info-item a {
  color: var(--ruby);
  text-decoration: none;
  font-weight: 700;
}

.pecenje-price-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.pecenje-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.pecenje-price-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

.pecenje-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pecenje-price-unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.pecenje-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .pecenje-banner-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============ SPECIALTIES (homepage) ============ */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.specialty-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.specialty-icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }

.specialty-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.specialty-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.specialty-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold); }

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(150deg, #1a0802 0%, var(--green-dark) 60%, var(--ruby) 100%);
  padding: 8rem 2rem 4.5rem;
  text-align: center;
  color: var(--cream);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============ MENU ============ */
.menu-section {
  padding: 3rem 2rem;
}

.menu-section:nth-child(odd) { background: var(--cream); }
.menu-section:nth-child(even) { background: var(--cream-dark); }
.menu-section.menu-featured { background: var(--green-dark) !important; }

.menu-container { max-width: 900px; margin: 0 auto; }

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--green-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-featured .menu-category-title {
  color: var(--gold);
  border-bottom-color: rgba(200,169,75,0.3);
}

.menu-items { display: flex; flex-direction: column; }

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.menu-item:last-child { border-bottom: none; }
.menu-featured .menu-item { border-bottom-color: rgba(255,255,255,0.08); }

.menu-item-left { flex: 1; }

.menu-item-name {
  font-size: 0.97rem;
  color: var(--brown-dark);
}

.menu-featured .menu-item-name { color: var(--cream); }

.menu-item-sub {
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
  margin-top: 0.15rem;
}

.menu-featured .menu-item-sub { color: rgba(255,255,255,0.4); }

.menu-item-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, #ccc 0, #ccc 3px, transparent 3px, transparent 8px);
  margin: 0 1.25rem;
  min-width: 20px;
}

.menu-featured .menu-item-dots {
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 3px, transparent 3px, transparent 8px);
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.2rem;
  white-space: nowrap;
}

.menu-featured .menu-item-price { color: var(--gold); }

.menu-item-price::after {
  content: ' din';
  font-size: 0.7rem;
  font-weight: 400;
  color: #aaa;
  font-family: 'Raleway', sans-serif;
}

.menu-featured .menu-item-price::after { color: rgba(200,169,75,0.5); }

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

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; }

.contact-icon-wrap {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.contact-info-text {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-info-text a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.contact-info-text a:hover { color: var(--gold); }

.map-wrap {
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

.map-caption {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* ============ FOOTER ============ */
footer {
  background: #180a02;
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 8px;
  line-height: 1;
}

.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 0.3rem;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-row a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-row a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============ RESPONSIVE ============ */
.menu-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 640px) {
  .menu-grid-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 3px solid var(--gold);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

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

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-item-dots { display: none; }
  .menu-item { gap: 0.5rem; }

  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}
