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

body {
    background: #050505;
    color: #f5f5f5;
    font-family: 'Cinzel', serif;
    overflow-x: hidden;
}

.smoke-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 30%),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.04), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(255,255,255,0.05), transparent 40%),
        #050505;
    z-index: -1;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.logo {
    font-family: 'Pirata One', cursive;
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.35);
}

.tagline {
    font-size: 1.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #c9c9c9;
}

.location {
    margin-top: 35px;
    line-height: 1.7;
}

.shop {
    font-size: 1.5rem;
    font-weight: 700;
}

.city {
    color: #bfbfbf;
}

.address {
    margin-top: 10px;
    color: #d8d8d8;
}

.phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.map-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.map-link:hover {
    background: #fff;
    color: #050505;
}

.specialties {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #ccc;
}

.preview-strip {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.preview-strip img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.preview-strip img:hover {
    transform: translateY(-8px) scale(1.03);
}

.about {
    padding: 90px 20px;
    text-align: center;
}

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

.about p {
    max-width: 700px;
    margin: 0 auto;
    color: #d0d0d0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.slideshow-section {
    padding: 90px 20px;
    text-align: center;
}

.slideshow-container {
    position: relative;
    max-width: 900px;
    height: 650px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.75);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    cursor: pointer;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.65);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 18px;
}

.next-btn {
    right: 18px;
}

footer {
    padding: 80px 20px 40px;
    text-align: center;
    background: rgba(0,0,0,0.45);
}

.footer-booking h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.footer-book-btn {
    display: inline-block;
    padding: 14px 42px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.3s ease;
}

.footer-book-btn:hover {
    background: #fff;
    color: #050505;
}

footer h3 {
    margin-top: 50px;
    font-size: 2rem;
    font-family: 'Pirata One', cursive;
}

.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials a {
    color: #fff;
    font-size: 1.8rem;
    transition: 0.3s ease;
}

.socials a:hover {
    transform: translateY(-5px);
    color: #cfcfcf;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #aaa;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero {
        padding: 45px 18px;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .specialties {
        gap: 8px;
        font-size: 0.8rem;
    }

    .preview-strip img {
        width: 30%;
        height: 160px;
    }

    .slideshow-container {
        height: 520px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .prev-btn {
        left: 8px;
    }

    .next-btn {
        right: 8px;
    }

    .about,
    .slideshow-section {
        padding: 65px 18px;
    }
}

@media (max-width: 480px) {
    .preview-strip img {
        width: 31%;
        height: 125px;
    }

    .slideshow-container {
        height: 430px;
    }

    .about h2,
    .section-title {
        font-size: 2rem;
    }

    .footer-booking h2 {
        font-size: 1.5rem;
    }
}