/* INDIAN BURGER TERMY PODDĘBICE - FINAL V3 */

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

:root {
    --black: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-500: #6a6a6a;
    --gray-400: #8a8a8a;
    --gray-200: #d4d4d4;
    --white: #ffffff;
    --primary: #c41e3a;
    --primary-dark: #991829;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    padding-bottom: 90px;
}

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

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

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.7;
    color: var(--gray-700);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.small {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-order {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.btn-order:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
}

.btn-add {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 10000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu a {
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/img/hero.jpg') center/cover no-repeat;
    background-size: 120%;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(196, 30, 58, 0.9);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-badge i {
    font-size: 1.125rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* INFO BAR */
.info-bar {
    background: var(--gray-900);
    padding: 1.5rem 0;
    color: var(--white);
}

.info-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.info-item.highlight {
    background: rgba(196, 30, 58, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

/* SECTIONS */
.section {
    padding: 5rem 0;
}

.section.bg-dark {
    padding: 4rem 0;
}

.bg-light {
    background: #f8f8f8;
}

.bg-dark {
    background: var(--gray-900);
    color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--white);
}

.bg-dark p {
    color: var(--gray-400);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* FEATURES */
.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
}

.feature i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.9375rem;
}

/* IMAGE */
.img-main {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* CARDS */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1rem;
}

.card-with-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card-highlight {
    border: 2px solid var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.check-list i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* MENU */
.menu-category {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 3rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.menu-category i {
    color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h4 {
    margin-bottom: 0.5rem;
}

.menu-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

.order-cta {
    margin: 1.5rem 0;
}

/* LOCATIONS */
.locations-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    position: relative;
}

.location-featured {
    border: 2px solid var(--primary);
}

.location-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    margin-bottom: 1rem;
}

.location-address {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.location-address strong {
    color: var(--black);
}

.location-desc {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.location-hours i {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

.location-contact {
    margin: 1.5rem 0;
}

.location-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s;
}

.location-contact a:hover {
    color: var(--primary-dark);
}

.location-contact i {
    font-size: 1.125rem;
}

.location-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.location-card .btn {
    margin-top: 1rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-map {
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    filter: grayscale(100%) contrast(1.1);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--gray-400);
    transition: color 0.2s;
    word-break: break-word;
}

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

.social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.2s;
}

.social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 2rem 0;
    text-align: center;
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
    z-index: 9997;
    transition: all 0.3s;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.5);
}

.floating-cta i {
    font-size: 1.25rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .grid-2,
    .cards-2,
    .locations-grid-2,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    
    .container,
    .container-wide {
        padding: 0 1.5rem;
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        transition: left 0.3s;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 9998;
        gap: 0;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .menu li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }
    
    .menu li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: var(--black);
        font-weight: 500;
    }
    
    .menu .btn-order {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin-top: 0.5rem;
        display: block;
    }
    
    .toggle {
        display: flex;
        z-index: 10000;
    }
    
    .toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* HERO MOBILE */
    .hero::before {
        background-size: cover;
        background-position: center;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    /* INFO BAR MOBILE */
    .info-items {
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .info-item {
        font-size: 0.875rem;
        justify-content: center;
        text-align: center;
    }
    
    /* CARDS MOBILE */
    .card-image {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    /* MENU MOBILE */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-item img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .menu-bottom {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .btn-add {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    /* CONTACT MOBILE */
    .contact-map {
        height: 350px;
    }
    
    .contact-map iframe {
        height: 100%;
    }
    
    .contact-items {
        gap: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .contact-item i {
        font-size: 1.125rem;
    }
    
    .bg-dark.section {
        padding: 3rem 0;
    }
    
    /* BUTTONS MOBILE */
    .btn,
    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 0.9375rem;
    }
    
    .hero .btn,
    .hero .btn-outline {
        width: auto;
        min-width: 140px;
    }
    
    /* FLOATING CTA MOBILE */
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
        left: auto;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta i {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .price {
        font-size: 1.25rem;
    }
    
    .btn-add {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .menu-bottom {
        gap: 0.5rem;
    }
}

/* ========================================
   MOBILE MENU - DOKLEIĆ NA KONIEC CSS
   ======================================== */

/* Navigation Base */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
}

/* Desktop Menu */
.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* Hamburger - ukryty na desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu - ukryte na desktop */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--gray-200);
    transition: color 0.2s;
}

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

.btn-mobile {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-mobile:hover {
    background: var(--primary-dark);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Ukryj desktop menu */
    .nav-desktop {
        display: none;
    }
    
    /* Pokaż hamburger */
    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) {
    /* Ukryj mobile menu na desktop */
    .mobile-menu,
    .mobile-overlay {
        display: none;
    }
}