@charset "UTF-8";
/* =============================================
   PreSuda - Tradicionalna Srpska Kuhinja
   index.css
   ============================================= */

/* --- CSS Variables --- */
:root {
  --wine: #4A0E1A;
  --wine-deep: #35080f;
  --wine-mid: #6b1526;
  --gold: #C6A75E;
  --gold-light: #d9bc7e;
  --gold-muted: #a8893e;
  --cream: #F5EFE6;
  --cream-dark: #ede4d6;
  --text: #1E1E1E;
  --muted: #6B6B6B;
  --white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius: 2px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

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

/* --- Section Utilities --- */
.section {
  padding: 100px 0;
}

.section--dark {
  background-color: var(--wine-deep);
  color: var(--cream);
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--gold-light);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wine);
}

.section-heading em {
  font-style: italic;
  color: var(--gold-muted);
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--light em {
  color: var(--gold-light);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(198, 167, 94, 0.6);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: rgba(198, 167, 94, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-nav.scrolled {
  background-color: rgba(53, 8, 15, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.85);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.nav-links .nav-cta {
  background-color: var(--gold);
  color: var(--wine-deep);
  padding: 8px 22px;
  font-weight: 600;
  transition: background-color var(--transition);
}

.nav-links .nav-cta:hover {
  background-color: var(--gold-light);
  color: var(--wine-deep);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
  border: 1px solid rgba(198, 167, 94, 0.35);
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  color: rgba(245, 239, 230, 0.65);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 11px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--gold-light);
  background-color: rgba(198, 167, 94, 0.1);
}

.lang-btn--active {
  background-color: var(--gold);
  color: var(--wine-deep);
}

.lang-btn--active:hover {
  background-color: var(--gold-light);
  color: var(--wine-deep);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

@media (max-width: 768px) {
  .lang-toggle {
    margin-right: 8px;
    display: flex;
  }
}

.nav-mobile {
  display: none;
  background-color: var(--wine-deep);
  border-top: 1px solid rgba(198, 167, 94, 0.2);
}

.nav-mobile ul {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.85);
  border-bottom: 1px solid rgba(198, 167, 94, 0.12);
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--gold-light);
}

.nav-mobile.open {
  display: block;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=85');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(35, 8, 12, 0.72) 0%,
    rgba(74, 14, 26, 0.65) 50%,
    rgba(30, 8, 12, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.hero-logomark {
  margin-bottom: 24px;
}

.hero-logomark svg {
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(245, 239, 230, 0.8);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background-color: rgba(198, 167, 94, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

/* =============================================
   ABOUT
   ============================================= */

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

.about-text .section-label {
  display: block;
  margin-bottom: 12px;
}

.about-text .section-heading {
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 400;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(74, 14, 26, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  z-index: 1;
}

.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1.5px solid rgba(198, 167, 94, 0.3);
  z-index: 0;
  pointer-events: none;
}

/* =============================================
   DISH SHOWCASE
   ============================================= */

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.dish-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 167, 94, 0.15);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.dish-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.04);
}

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 8, 12, 0.4) 0%, transparent 60%);
}

.dish-card-body {
  padding: 24px;
}

.dish-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.dish-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.dish-card-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.dish-card-price small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.8;
}

.dish-card-desc {
  font-size: 0.87rem;
  color: rgba(245, 239, 230, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}

.dish-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}

.dish-card-link:hover {
  color: var(--gold-light);
}

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

/* =============================================
   MENU PREVIEW
   ============================================= */

.menu-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.menu-preview-category {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(74, 14, 26, 0.15);
}

.menu-list {
  margin-bottom: 40px;
}

.menu-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(107, 107, 107, 0.25);
  font-size: 0.92rem;
  color: var(--text);
}

.menu-list-item span:first-child {
  color: var(--text);
}

.menu-list-item span:last-child {
  font-weight: 500;
  color: var(--wine);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-preview-footer {
  text-align: center;
}

.menu-preview-footer .btn-outline {
  color: var(--wine);
  border-color: rgba(74, 14, 26, 0.4);
}

.menu-preview-footer .btn-outline:hover {
  background-color: rgba(74, 14, 26, 0.06);
  border-color: var(--wine);
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large img {
  height: 100%;
  min-height: 440px;
}

/* =============================================
   CONTACT
   ============================================= */

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

.contact-info {
  min-width: 0;
}

.contact-map {
  min-width: 0;
  overflow: hidden;
}

.menu-preview-col {
  min-width: 0;
}

.contact-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(74, 14, 26, 0.1);
}

.contact-block h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 12px;
}

.contact-block p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine);
  transition: color var(--transition);
}

.contact-phone:hover {
  color: var(--gold-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(74, 14, 26, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item span,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text);
}

.contact-item a:hover {
  color: var(--wine);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background-color: var(--wine-deep);
  color: var(--cream);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.15);
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
  line-height: 1.7;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.65);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

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

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.65);
  margin-bottom: 6px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.35);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: rgba(198, 167, 94, 0.5) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }
  .dishes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-image {
    order: -1;
  }

  .about-image-frame img {
    height: 320px;
  }

  .about-image-accent {
    display: none;
  }

  .about-stats {
    gap: 24px;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--large img {
    min-height: 260px;
    height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about-stats {
    flex-wrap: wrap;
  }

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

  .gallery-item--large {
    grid-column: span 1;
  }
}

/* --- Focus visible --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--wine-deep);
  padding: 8px 16px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* =============================================
   SCROLL REVEAL (set by JS)
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
