/* ============================================
   RESTORAN DVA BRATA - GOLDEN AGE DESIGN 2026
   "ELEGANCIA I LUKSUZ"
============================================ */

/* ===== CSS VARIJABLE - ZLATNA PALETA ===== */
:root {
    /* Glavne boje - zlatna i tamna */
    --primary: #C5A572;        /* Zlatna */
    --primary-light: #E5C9A5;
    --primary-dark: #9E7B4C;
    --secondary: #4A3B2A;       /* Tamno braon */
    --accent: #2A2A2A;          /* Skoro crna */
    --accent-glow: #3A3A3A;
    
    /* Neutralne - svetle */
    --light: #FFFFFF;
    --dark: #1A1A1A;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Glass efekti */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(197, 165, 114, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(197, 165, 114, 0.2);
    
    /* Senke */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(197, 165, 114, 0.4);
    
    /* Animacije */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Fontovi */
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Background boje */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-offwhite: #f8f5f0;
    --bg-light: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --hover-bg: #f0f0f0;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #f8f9fa;
}

/* ===== DARK THEME VARIJABLE ===== */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-offwhite: #2d2d2d;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --hover-bg: #3d3d3d;
    --header-bg: rgba(26, 26, 26, 0.95);
    --footer-bg: #2d2d2d;
    
    /* Prilagođene boje za dark mod */
    --primary: #D4AF37;
    --primary-light: #F5D742;
    --primary-dark: #B8860B;
    --secondary: #E5E5E5;
}

/* ===== RESET I OSNOVNI STILOVI ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== LUKSUZNA POZADINA ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(197, 165, 114, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(197, 165, 114, 0.01) 0px, rgba(197, 165, 114, 0.01) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== TIPOGRAFIJA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: var(--font-accent);
    margin-bottom: 80px;
    position: relative;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-top: 10px;
    letter-spacing: 5px;
    font-family: var(--font-secondary);
    font-weight: 300;
}

/* ===== DUGMAD ===== */
.btn-primary, .btn-outline, .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 50px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 165, 114, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline i {
    transition: transform 0.3s;
}

.btn-outline:hover i {
    transform: translateX(5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* ===== HEADER I NAVIGACIJA ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    transition: all var(--transition-base);
}

header.scrolled {
    background: var(--header-bg);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all var(--transition-base);
}

/* Logo */
.logo {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(197, 165, 114, 0.3));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

/* Navigacija */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 5px 0;
    position: relative;
    transition: all var(--transition-base);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 500;
}

/* Language switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all var(--transition-base);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Theme toggle */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-right: 15px;
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    color: #f39c12;
}

.theme-toggle .fa-moon {
    color: #9b59b6;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow-color);
}

.theme-toggle.rotate {
    animation: spin 0.5s ease;
}

/* Header controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
}

/* Menu toggle za mobilni */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SEKCIJA ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(197, 165, 114, 0.1), rgba(74, 59, 42, 0.3));
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.02);
    transition: transform 8s ease;
}

.slide.active img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: heroAppear 1.5s var(--transition-elastic);
}

.hero-text {
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
    color: white;
    font-family: var(--font-accent);
    position: relative;
    display: inline-block;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Slideshow controls */
.slideshow-controls {
    position: absolute;
    bottom: 120px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slide-prev, .slide-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-prev:hover, .slide-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Indikatori */
.slide-indicators {
    position: absolute;
    bottom: 130px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: var(--primary);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    color: white;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(197, 165, 114, 0.3);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.service-item:hover::before {
    transform: translateX(100%);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 165, 114, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-item:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: var(--font-accent);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== O NAŠOJ HRANI ===== */
.food-story {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.food-story::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.food-story::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.food-story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.food-story-text {
    padding-right: 20px;
}

.food-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: var(--font-accent);
}

.food-intro strong {
    color: var(--primary);
    font-weight: 600;
}

.food-highlights {
    margin: 40px 0;
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-item strong {
    color: var(--text-primary);
}

.food-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 40px 0;
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border-color);
}

.food-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.quote-highlight {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

.food-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.signature-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.signature-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 2px;
    white-space: nowrap;
}

.food-story-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
    max-width: 90%;
    margin-left: auto;
}

.food-story-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
}

.food-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.food-story-image:hover img {
    transform: scale(1.02);
}

/* ===== GOOGLE RECENZIJE ===== */
.google-reviews-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.google-reviews-section .section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 40px;
}

.elfsight-app-769cfb86-9ce6-46eb-979d-e8a8286fc067 {
    margin: 30px 0;
    min-height: 400px;
}

.google-reviews-section .btn-outline {
    background: var(--card-bg);
    border-color: var(--primary);
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.google-reviews-section .btn-outline:hover {
    background: var(--primary);
    color: white;
}

.google-reviews-section .btn-outline i {
    font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 40s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-accent);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-content .btn-primary:hover {
    background: var(--bg-offwhite);
    transform: translateY(-2px);
}

/* ===== O NAMA STRANA ===== */
.page-hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    text-align: center;
    margin-top: 0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
    font-family: var(--font-accent);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: var(--font-secondary);
}

.about-story {
    padding: 80px 0;
    background: var(--bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    padding-right: 20px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.story-image:hover img {
    transform: scale(1.02);
}

/* ===== VREDNOSTI ===== */
.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(197, 165, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== TIM ===== */
.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-info p {
    color: var(--primary);
    font-size: 0.95rem;
}

/* ===== ANIMACIJE ===== */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.3); opacity: 0.3; }
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .food-story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .food-story-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--header-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .header-controls {
        margin-right: 10px;
    }
    
    .theme-toggle {
        padding: 5px 10px;
    }
    
    .theme-toggle i {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .slideshow-controls {
        bottom: 100px;
        right: 20px;
    }
    
    .slide-indicators {
        bottom: 110px;
        left: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .food-story-image {
        max-width: 100%;
    }
    
    .food-highlights {
        padding: 20px;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
    
    .food-quote {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .food-signature {
        gap: 10px;
    }
    
    .signature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .slideshow-controls {
        display: none;
    }
    
    .slide-indicators {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-outline {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .food-quote::before {
        font-size: 3rem;
    }
    
    .theme-toggle {
        padding: 5px 8px;
    }
    
    .theme-toggle i {
        font-size: 0.9rem;
    }
}

/* ===== DODATNI LUKSUZNI ELEMENTI ===== */
.gold-border {
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.gold-text {
    color: var(--primary);
}

.light-text {
    font-weight: 300;
}

.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 40px auto;
}

.text-center {
    text-align: center;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Dark mod specifični stilovi */
[data-theme="dark"] .hero-content {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .hero-content h1 {
    background: linear-gradient(135deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .gallery-item,
[data-theme="dark"] .menu-item,
[data-theme="dark"] .contact-details {
    border-color: var(--border-color);
}

[data-theme="dark"] .form-section,
[data-theme="dark"] .reservation-summary,
[data-theme="dark"] .contact-info-box {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .btn-prev {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .btn-next {
    background: var(--primary);
    color: white;
}

[data-theme="dark"] .glow-text {
    animation: darkGlow 3s ease-in-out infinite;
}

@keyframes darkGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* ===== ABOUT PAGE REVIEWS ===== */
.about-reviews {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-reviews .section-description {
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-secondary);
}

/* Potpuno uklanjanje zvezdica sa svih ekrana */
.hero-title::before,
.hero-title::after,
.section-title::before,
.section-title::after {
    display: none !important;
}
/* ===== ANIMACIJE ZA FRESH MESSAGE ===== */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}