@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Lato:ital,wght@0,400;0,700;1,400&family=Lilita+One&family=Miniver&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    min-width: 320px;
    background: #0a0505;
}

:root {
    --white-color: white;
    --dark-color: #1a0a0a;
    --primary-color: #8b1538;
    --secondry-color: #ff6b35;
    --light-pink-color: #2d1515;
    --medium-gray-color: #ccc;
    --blood-red: #8b0000;
    --blood-red-light: #b22222;
    --moon-orange: #ff6b35;
    --moon-glow: #ff9500;
    --dark-purple: #1a0a15;
    --deep-black: #0a0505;
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;
    --site-max-width: 1300px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

a:visited {
    color: white;
}

a:visited:hover {
    color: white;
}

img {
    width: 100%;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Header */
header {
    background: linear-gradient(180deg, #1a0a10 0%, #2d1218 100%);
    position: fixed;
    z-index: 5;
    width: 100%;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.navbar,
.nav-menu,
.nav-link {
    color: var(--white-color);
}

.navbar :where(#menu-close-button i, #menu-open-button i) {
    display: none;
}

.navbar .logo-link .text-logo {
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
}

.navbar .logo-link .text-logo i {
    color: var(--secondry-color);
    margin-right: 8px;
}

.section-content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.navbar .navmenu,
.nav-link {
    padding: 12px 22px;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    font-size: var(--font-size-m);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.navbar .navmenu,
.nav-link:hover {
    background-color: var(--secondry-color);
    color: #fff;
}

.navbar .navmenu::after,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .navmenu:hover::after,
.nav-link:hover::after {
    width: 60%;
}

.navbar .navmenu.active,
.nav-link.active {
    background-color: var(--secondry-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a0a15 0%, #2d1218 30%, #0a0505 60%, #1a0a10 100%);
    min-height: 100vh;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #0a0505, transparent);
    pointer-events: none;
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondry-color);
    font-family: "Miniver", sans-serif;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.hero-section .hero-details .subtitle {
    font-size: var(--font-size-xl);
    margin-top: 8px;
    max-width: 70%;
    font-weight: var(--font-weight-normal);
}

.hero-section .hero-details .description {
    font-size: var(--font-size-m);
    max-width: 70%;
    margin: 24px 0 40px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 15px 35px;
    background-color: var(--secondry-color);
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-medium);
    border: 2px solid transparent;
    transition: .3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    color: white;
    font-size: 1.1rem;
}

.hero-section .hero-details .button:hover {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.6);
}

.hero-section .hero-details .contact-us {
    padding: 15px 35px;
    background-color: transparent;
    border: 2px solid var(--secondry-color);
    border-radius: var(--border-radius-m);
    font-weight: var(--font-weight-medium);
    transition: .3s ease;
    color: white;
    font-size: 1.1rem;
}

.hero-section .hero-details .contact-us:hover {
    background-color: var(--blood-red-light);
    border-color: var(--blood-red-light);
}

.contact-us:hover a {
    color: white;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0505 0%, #1a0a15 25%, #2d1218 50%, #1a0a10 75%, #0a0505 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #0a0505, transparent);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #0a0505, transparent);
    pointer-events: none;
}

.about-section .section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(139, 21, 56, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    padding: 60px 0 100px;
    color: var(--white-color);
}

.section-title::after {
    content: '';
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--blood-red), var(--secondry-color), var(--blood-red));
    border-radius: var(--border-radius-s);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
    color: rgba(255, 255, 255, 0.8);
}

.about-section .about-details .section-title {
    padding: 0;
    color: var(--white-color);
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    transition: .3s ease;
    color: var(--secondry-color);
    font-size: var(--font-size-l);
}

.about-section .social-link-list .social-link:hover {
    color: var(--white-color);
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

/* Menu Section */
.menu-section {
    color: var(--white-color);
    background: linear-gradient(135deg, #0a0505 0%, #1a0a15 25%, #2d1218 50%, #1a0a10 75%, #0a0505 100%);
    padding: 50px 0 100px;
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #0a0505, transparent);
    pointer-events: none;
}

.menu-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #0a0505, transparent);
    pointer-events: none;
}

.menu-section .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.menu-section .menu-list .menu-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(33% - 30px);
    min-width: 250px;
    padding: 20px;
    border-radius: var(--border-radius-m);
    transition: all 0.3s ease;
}

.menu-section .menu-list .menu-item:hover {
    background: rgba(139, 21, 56, 0.2);
    transform: translateY(-5px);
}

.menu-section .menu-list .menu-item .menu-image {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: filter 0.3s ease;
    border-radius: var(--border-radius-m);
}

.menu-section .menu-list .menu-item:hover .menu-image {
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
}

.menu-section .menu-list .menu-item .name {
    margin: 12px 0;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-semibold);
    color: var(--secondry-color);
}

.menu-section .menu-list .menu-item .text {
    font-size: var(--font-size-m);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.menu-order-btn {
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondry-color), var(--blood-red));
    color: white;
    border: none;
    border-radius: var(--border-radius-m);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.menu-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--blood-red), var(--secondry-color));
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0505 0%, #1a0a15 25%, #2d1218 50%, #1a0a10 75%, #0a0505 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #0a0505, transparent);
    pointer-events: none;
}

.gallery-section .section-title {
    color: var(--white-color);
}

.gallery-section .section-title::after {
    background: linear-gradient(90deg, var(--blood-red), var(--secondry-color), var(--blood-red));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    background: linear-gradient(135deg, #1a0a10 0%, #2d1218 100%);
    aspect-ratio: 1;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius-m);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    border-color: var(--secondry-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0505 0%, #1a0a10 100%);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

footer .footer-content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer .footer-section {
    flex: 1;
    min-width: 200px;
}

footer .footer-section h3 {
    color: var(--secondry-color);
    font-size: var(--font-size-l);
    margin-bottom: 20px;
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: var(--font-size-m);
}

footer .footer-section ul li {
    margin-bottom: 10px;
}

footer .footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

footer .footer-section ul li a:hover {
    color: var(--secondry-color);
}

footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-s);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .menu-section .menu-list .menu-item {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    .navbar :where(#menu-close-button i, #menu-open-button i) {
        display: block;
        font-size: var(--font-size-xxl);
        font-weight: 900;
        color: white;
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button {
        display: block;
    }

    body.show-mobile-menu .navbar .nav-menu {
        left: 0;
    }

    body.show-mobile-menu header::before {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.2);
    }

    .navbar .nav-menu {
        display: flex;
        position: fixed;
        left: -300px;
        top: 0;
        width: 250px;
        height: 100%;
        flex-direction: column;
        align-items: center;
        background-color: #1a0a10;
        padding-top: 100px;
        transition: left .5s ease;
        z-index: 6;
    }

    .navbar .nav-menu .nav-link {
        color: white;
        font-size: var(--font-size-l);
        display: block;
        margin-top: 17px;
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description),
    .about-section .about-details {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 300px;
        margin-right: 0;
    }

    .about-section .section-content {
        flex-direction: column;
        gap: 70px;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list .menu-item {
        width: calc(50% - 30px);
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .menu-section .menu-list {
        gap: 20px;
    }

    .menu-section .menu-list .menu-item {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

