/* ==========================================================================
   Lezzet Novi Pazar - Premium CSS Design
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
    --primary: #C5A028; /* Gold/Amber */
    --primary-light: #E2BA3C;
    --primary-dark: #A07F1A;
    --secondary: #D9534F; /* Terracotta Red */
    --dark: #121212; /* Dark Charcoal */
    --dark-bg: #1A1A1A;
    --light-bg: #FAF6F0; /* Soft warm cream */
    --white: #FFFFFF;
    --text-dark: #2E2E2E;
    --text-muted: #666666;
    --text-light: #F3F3F3;
    --border-color: #E6DFD5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

p {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* --- Layout Utilities --- */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

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

.text-highlight {
    color: var(--primary);
    font-style: italic;
}

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 40, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-phone:hover {
    background-color: #2e2e2e;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-icon svg {
    margin-right: 8px;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.logo-accent {
    position: relative;
    z-index: 1;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--primary);
    z-index: -1;
    border-radius: 2px;
}

.nav-list {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-phone-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-whatsapp-header:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}


.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    transform-origin: left;
}

@media (min-width: 992px) {
    .nav-list {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

/* Mobile Menu Navigation open state */
.nav-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--dark);
    padding: 80px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-active .nav-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-active .nav-link {
    font-size: 1.15rem;
}

.hamburger.toggle span:first-child {
    transform: rotate(45deg);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:last-child {
    transform: rotate(-45deg);
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('assets/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 30%, rgba(18, 18, 18, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
    }
}


/* --- Highlights Section --- */
.highlights-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlight-card:hover {
    background-color: rgba(255,255,255,0.02);
    transform: translateY(-5px);
}

.highlight-icon {
    color: var(--primary);
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}


/* --- About Section / O nama --- */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-experience {
        bottom: 10px;
        right: 10px;
        padding: 12px 18px;
    }
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* --- Process Section / Kako pravimo --- */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 15px;
    right: 20px;
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* --- Menu Section / Ponuda --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 160, 40, 0.25);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-intro-card {
    background-color: var(--light-bg);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    margin-bottom: 40px;
}

.menu-intro-card h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.fillings-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.fillings-tags span:first-child {
    font-weight: 600;
}

.tag {
    background-color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.menu-item-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(197, 160, 40, 0.1);
}

.item-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background-color: var(--dark);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.item-badge.primary {
    background-color: var(--primary);
}

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

.item-header h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
}

.price-estimate {
    font-size: 0.85rem;
    background-color: var(--light-bg);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-dark);
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pite interactive selectors */
.pite-selector-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pite-selector {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pite-selector label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.size-select, .filling-select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.size-select:focus, .filling-select:focus {
    border-color: var(--primary);
}

.mt-15 {
    margin-top: 15px;
}


/* --- Contact Section / Kontakt --- */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.detail-icon {
    color: var(--primary);
    background-color: rgba(197, 160, 40, 0.1);
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-detail-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-detail-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

.link-hover:hover {
    color: var(--primary);
}

.quick-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.map-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
}


/* --- Footer --- */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 2fr;
    }
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.7;
    max-width: 320px;
}

.footer-links h3, .footer-seo-tags h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-seo-tags p {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    line-height: 1.7;
}

.footer-seo-tags strong {
    color: var(--primary-light);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
}

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

@media (min-width: 768px) {
    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
