/* ========================================
   RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #f7782a;
    --dark-navy: #1a2332;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --transition: all 0.3s ease;
}

  
/* @font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-orange);
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-navy);
}

.logo span {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 3px;
}

.nav-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 5px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.7)),
                url('img/bigbite_wolt_cover_1010x540_20251031-1.jpg') center/cover;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ========================================
   SECTION TITLES
======================================== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-navy);
    position: relative;
}

.section-title.light {
    color: var(--white);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ========================================
   WHY SECTION
======================================== */
.why-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.why-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-text .highlight {
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.15rem;
}

.why-features {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.why-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.why-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.why-features ul li:last-child {
    border-bottom: none;
}

/* ========================================
   ABOUT PRODUCT SECTIONS
======================================== */
.about-product {
    padding: 80px 0;
}

.burger-section {
    background: var(--white);
}

.pizza-section {
    background: var(--light-bg);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content.reverse {
    direction: rtl;
}

.product-content.reverse > * {
    direction: ltr;
}

.product-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.burger-img {
    background-image: url('img/burger.jpg');
}

.pizza-img {
    background-image: url('img/pizza.jpg');
}

.product-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.warning {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.product-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.product-text blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-orange);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
}

.product-text .btn-primary {
    margin-top: 20px;
}

/* ========================================
   MENU SECTION
======================================== */
.menu-section {
    padding: 80px 0;
    background: var(--dark-navy);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.menu-tab:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.menu-tab:focus-visible:not(.active) {
    border-color: var(--primary-orange);
}

.menu-tab:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.menu-tab.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-item-image.placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    font-style: italic;
}

.menu-item-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    gap: 10px;
}

.menu-item h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.menu-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.menu-note {
    text-align: center;
    color: var(--white);
    font-size: 1.05rem;
    font-style: italic;
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-orange);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Wolt Button - Svijetlo plava boja */
.btn-wolt {
    display: inline-block;
    background: #00C2E8;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #00C2E8;
    text-align: center;
}

.btn-wolt:hover {
    background: #00A8CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 194, 232, 0.4);
    border-color: #00A8CC;
}

/* Glovo Button - Žuta boja */
.btn-glovo {
    display: inline-block;
    background: #FFC042;
    color: #000000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #FFC042;
    text-align: center;
}

.btn-glovo:hover {
    background: #FFB520;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 192, 66, 0.4);
    border-color: #FFB520;
}

.delivery-note {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary-orange);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .product-content,
    .product-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-text h2 {
        font-size: 2rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-tab {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-image {
        height: 180px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-large {
        width: 100%;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .image-placeholder {
        height: 300px;
    }

    .menu-item-image {
        height: 150px;
    }

    .menu-item-image.placeholder {
        font-size: 1rem;
    }
}

