
:root {
    --bg-color: #0a0a0a;
    --surface-color: #121212;
    --primary-red: #E62117;
    --primary-red-hover: #ff3333;
    --secondary-accent: #a3160f;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at center bottom, #220a0a 0%, #0a0a0a 70%);
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; }


header {
    position: fixed; top: 0; width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px); z-index: 1000;
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(230, 33, 23, 0.2);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: var(--font-head); font-size: 1.8rem; color: var(--text-light);
    letter-spacing: 2px; position: relative;
}
.logo::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 40%; height: 3px; background: var(--primary-red);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-light); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
    height: 2px; background: var(--primary-red); transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.btn-order {
    background: linear-gradient(45deg, var(--secondary-accent), var(--primary-red));
    color: var(--text-light); padding: 0.7rem 1.5rem; border-radius: 2px;
    font-weight: 600; text-transform: uppercase; font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(230, 33, 23, 0.3);
}
.btn-order:hover {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-hover));
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 33, 23, 0.5);
}
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-red); }


.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('mainpickebab.jpeg');
    background-size: cover; 
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 1rem;
}
.hero-content h1 {
    font-family: var(--font-head); font-size: 4.5rem; margin-bottom: 1rem;
    line-height: 1.1; text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}
.hero-content span {
    color: var(--primary-red); text-shadow: 0 0 20px rgba(230, 33, 23, 0.6);
}
.hero-content p {
    font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2.5rem;
    max-width: 700px; margin-left: auto; margin-right: auto;
}


.section { padding: 6rem 10%; }
.section-title { text-align: center; margin-bottom: 4rem; position: relative; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 0.5rem; }
.section-title h2 span { color: var(--primary-red); }
.section-title p {
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 3px; font-size: 0.9rem;
}
.separator {
    height: 3px; width: 80px; background: var(--primary-red); margin: 1.5rem auto;
}
.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.menu-card {
    background: var(--surface-color);
    padding: 2.5rem 2.5rem 5rem 2.5rem; 
    border-bottom: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.4s all ease;
    position: relative;
    overflow: hidden;
    
  
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}
.menu-card:hover {
    border-bottom-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(230, 33, 23, 0.15);
    background: #181818;
}
.card-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 1rem;
}
.menu-card h3 { font-size: 1.4rem; font-family: var(--font-head); }
.item-number { font-size: 0.8rem; color: var(--primary-red); font-weight: 600; margin-right: 10px; }
.menu-price {
    font-family: var(--font-body); font-size: 1.3rem;
    color: var(--primary-red); font-weight: 700; white-space: nowrap;
}
.menu-card p {
    color: var(--text-muted); font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem;
}


.photo-btn {
    position: absolute; bottom: 20px; right: 20px;
    background: linear-gradient(45deg, var(--secondary-accent), var(--primary-red));
    color: white; padding: 0.5rem 1rem; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; border-radius: 2px; cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; align-items: center; gap: 8px;
}
.menu-card:hover .photo-btn { opacity: 1; transform: translateY(0); }
.photo-btn:hover { background: linear-gradient(45deg, var(--primary-red), var(--primary-red-hover)); }


.features-section { position: relative; }
.features-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #0a0a0a 30%, rgba(230, 33, 23, 0.1) 100%);
    z-index: 1; pointer-events: none;
}
.features {
    background: var(--surface-color);
    display: grid;
    grid-template-columns: 1fr;
    z-index: 2; position: relative;
    justify-items: center;
}
.features-img { display: none; }
.features-text {
    padding: 6rem 2rem;
    display: flex; flex-direction: column; justify-content: center;
    text-align: center;
    max-width: 800px;
}
.features-text h2 { font-family: var(--font-head); font-size: 2.8rem; margin-bottom: 1.5rem; }
.features-text h2 span { color: var(--primary-red); }
.features-text p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.subtitle {
    color: var(--primary-red); text-transform: uppercase; letter-spacing: 2px;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; display: block;
}

.features-list { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.features-list li {
    display: flex; align-items: flex-start; gap: 1.5rem; text-align: left;
    width: 100%; max-width: 550px; 
}
.features-list i {
    font-size: 1.5rem; color: var(--primary-red); min-width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(230, 33, 23, 0.1); border-radius: 5px;
    transition: 0.3s; flex-shrink: 0;
}
.features-list li:hover i { background: var(--primary-red); color: #fff; transform: scale(1.1); }
.features-list div { display: flex; flex-direction: column; }
.features-list strong {
    font-family: var(--font-head); font-size: 1.2rem; color: var(--text-light); margin-bottom: 0.3rem;
}
.features-list span { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }


.map-section {

    width: 100%; position: relative; height: 450px; overflow: hidden;
    border-top: 1px solid #333; border-bottom: 3px solid var(--primary-red);
}
.map-section iframe { width: 100%; height: 100%; display: block; }


footer {
    background: #050505; padding: 5rem 10% 2rem; position: relative;
}
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem; margin-bottom: 3rem;
}
.footer-col h4 {
    color: var(--text-light); margin-bottom: 1.5rem;
    font-family: var(--font-head); font-size: 1.3rem;
}
.footer-col p, .footer-col a {
    color: var(--text-muted); display: block;
    margin-bottom: 0.8rem; font-size: 0.95rem;
}
.footer-col a:hover { color: var(--primary-red); }
.contact-highlight { color: var(--primary-red) !important; font-weight: 600; }
.social-icons a {
    font-size: 1.4rem; margin-right: 1.5rem; color: var(--text-light);
    transition: 0.3s; display: inline-block;
}
.social-icons a:hover { 
    color: var(--primary-red); transform: scale(1.2);
    text-shadow: 0 0 15px rgba(230, 33, 23, 0.8);
}
.copyright {
    text-align: center; color: #444; font-size: 0.8rem;
    border-top: 1px solid #111; padding-top: 2rem;
}



.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 2000; 
    display: none; justify-content: center; align-items: center;
    padding: 1rem; backdrop-filter: blur(8px);
}
.modal-overlay.active { display: flex; }

.modal-content {
    position: relative; 
    width: auto; 
    max-width: 90%; 
    max-height: 90vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;     
    height: auto;   
    display: block;
    border: 3px solid var(--primary-red); 
    box-shadow: 0 0 40px rgba(230, 33, 23, 0.4); 
    object-fit: contain; 
}

.modal-close {
    position: absolute; top: -50px; right: -10px; 
    color: var(--text-light); font-size: 2.5rem; cursor: pointer; transition: 0.3s;
    background: none; border: none; padding: 10px;
}
.modal-close:hover { color: var(--primary-red); transform: scale(1.1); }

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}


@media (max-width: 968px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section { padding: 4rem 5%; }
}
@media (max-width: 768px) {
    .nav-links {
        position: absolute; right: 0; top: 70px;
        background: var(--surface-color); flex-direction: column;
        width: 100%; text-align: center; padding: 2rem 0;
        transform: translateX(100%); transition: transform 0.3s ease-in-out;
        border-bottom: 2px solid var(--primary-red);
    }
    .nav-links.active { transform: translateX(0); }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2.8rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .photo-btn { opacity: 1; transform: translateY(0); position: relative; bottom: auto; right: auto; margin-top: 1rem; display: inline-flex;}
    .menu-card { padding-bottom: 2.5rem; }
}


.gallery-section {
    background-color: #0d0d0d; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px; 
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: none; padding: 0; width: 100%; bottom: auto; right: auto; opacity: 1; transform: none; display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(230, 33, 23, 0.4); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item {
        height: 200px;
    }
}


.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(230, 33, 23, 0.4);
    z-index: 9999;
    
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.scroll-to-top:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(230, 33, 23, 0.6);
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.logo-img {
    height: 70px; 
    width: auto;  
    display: block;
}


footer .logo-img {
    height: 110px;
}