@import url('https://fonts.cdnfonts.com/css/linux-biolinum');

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

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #faf8f5;
    --gray-light: #e8e6e3;
    --gray: #888888;
    --gray-dark: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Linux Biolinum', 'Georgia', serif;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    filter: grayscale(50%);
    pointer-events: none;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1.2s ease, transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.zoom-out {
    opacity: 0;
    transform: scale(5);
}

.loading-screen.hidden {
    display: none;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin-bottom: 40px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1px;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    animation: loading 3s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

h1, h2, h3, h4 {
    font-family: 'Linux Biolinum', 'Georgia', serif;
    font-weight: normal;
}

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

.menu-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    min-height: calc(100vh - 40px);
    background-color: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease 0.5s, transform 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    overflow: hidden;
}

.menu-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.flour-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flour-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    animation: flourFade 1s ease-out forwards;
}

@keyframes flourFade {
    0% {
        opacity: 0.6;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 22s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; animation-duration: 28s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(5) { left: 65%; top: 40%; animation-delay: 3s; animation-duration: 24s; }
.particle:nth-child(6) { left: 80%; top: 15%; animation-delay: 5s; animation-duration: 26s; }
.particle:nth-child(7) { left: 90%; top: 55%; animation-delay: 2.5s; animation-duration: 23s; }
.particle:nth-child(8) { left: 75%; top: 80%; animation-delay: 1.5s; animation-duration: 21s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(40px, -40px) rotate(270deg);
        opacity: 0.2;
    }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.corner-ornament {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 10;
}

.corner-ornament::before,
.corner-ornament::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
}

.corner-ornament.top-left {
    top: 15px;
    left: 15px;
}
.corner-ornament.top-left::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
}
.corner-ornament.top-left::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 30px;
}

.corner-ornament.top-right {
    top: 15px;
    right: 15px;
}
.corner-ornament.top-right::before {
    top: 0;
    right: 0;
    width: 30px;
    height: 1px;
}
.corner-ornament.top-right::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 30px;
}

.corner-ornament.bottom-left {
    bottom: 15px;
    left: 15px;
}
.corner-ornament.bottom-left::before {
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
}
.corner-ornament.bottom-left::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 30px;
}

.corner-ornament.bottom-right {
    bottom: 15px;
    right: 15px;
}
.corner-ornament.bottom-right::before {
    bottom: 0;
    right: 0;
    width: 30px;
    height: 1px;
}
.corner-ornament.bottom-right::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 30px;
}

.flour-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.flour-transition.active .flour-wave {
    animation: flourWave 1s ease-in-out forwards;
}

.flour-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 235, 225, 0.9) 30%, 
        rgba(220, 215, 205, 0.85) 60%, 
        transparent 100%);
    transform: scale(0);
    opacity: 0;
}

@keyframes flourWave {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    30% {
        transform: scale(2);
        opacity: 0.9;
    }
    50% {
        transform: scale(3);
        opacity: 0.7;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.flour-dust {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes flourDustFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.3);
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-logo img {
    height: 140px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: normal;
    position: relative;
    padding: 5px 0;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    width: 25px;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.nav-menu-mobile {
    display: none;
    list-style: none;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-menu-mobile.active {
    display: flex;
}

.main-content {
    padding: 0;
}

.page {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-intro {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 4px;
    font-weight: normal;
}

.tagline {
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gray);
}

.decorative-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    margin: 25px 0;
}

.decorative-line.center {
    margin: 15px auto 30px;
}

.description {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: normal;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--white);
    cursor: pointer;
    font-family: 'Linux Biolinum', 'Georgia', serif;
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: 4px;
    font-weight: normal;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 50px;
    font-style: italic;
}

#cardapio,
#sobre,
#contato {
    padding: 50px 0;
}

.menu-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: normal;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
}

.menu-item h4 {
    font-size: 1.15rem;
    font-weight: normal;
    white-space: nowrap;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    min-width: 20px;
}

.price {
    font-size: 1.1rem;
    color: var(--white);
    white-space: nowrap;
}

.menu-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 30px;
    letter-spacing: 2px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gray);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.feature p {
    color: var(--gray);
    font-size: 0.85rem;
    font-style: italic;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-form {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Linux Biolinum', 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
}

.form-group select option {
    background-color: var(--black);
}

.footer {
    padding: 35px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer p {
    color: var(--gray);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.gluten-free {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-header {
    padding: 50px 40px 30px;
    text-align: center;
}

.pizza-showcase {
    width: 100%;
    overflow: visible;
    position: relative;
}

.pizza-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 280px;
    padding: 30px 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.pizza-menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.pizza-half {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 10;
}

.pizza-from-left .pizza-half {
    left: -100px;
}

.pizza-from-right .pizza-half {
    right: -100px;
}

.pizza-half-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pizza-menu-item.visible .pizza-half-img {
    filter: grayscale(0%);
}

.pizza-details {
    flex: 1;
    padding: 0 20px;
    transition: all 0.8s ease;
}

.pizza-from-left .pizza-details {
    margin-left: 295px;
    text-align: left;
}

.pizza-from-right .pizza-details {
    margin-right: 295px;
    text-align: right;
}

.pizza-from-right {
    flex-direction: row-reverse;
}

.pizza-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: normal;
}

.pizza-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 350px;
}

.pizza-from-right .pizza-desc {
    margin-left: auto;
}

.pizza-value {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.view-pizza-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Linux Biolinum', 'Georgia', serif;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.pizza-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.pizza-modal.active {
    opacity: 1;
    visibility: visible;
}

.pizza-modal-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

.pizza-modal.active .pizza-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-pizza-container {
    margin-bottom: 30px;
}

.modal-pizza-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: modalPizzaSpin 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes modalPizzaSpin {
    0% {
        transform: rotate(0deg) scale(0.5);
        opacity: 0;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

.modal-pizza-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: normal;
}

.modal-pizza-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.modal-pizza-price {
    display: block;
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.modal-order-btn {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Linux Biolinum', 'Georgia', serif;
    cursor: pointer;
    transition: all 0.4s ease;
}

.modal-order-btn:hover {
    background: transparent;
    color: var(--white);
}

.home-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.home-feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-number {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 15px;
    font-weight: normal;
}

.home-feature h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.home-feature p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.home-quote {
    text-align: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.home-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.home-quote cite {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.home-cta {
    text-align: center;
    padding: 50px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.home-cta p {
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.home-cta .cta-text {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }
    
    .home-features {
        grid-template-columns: 1fr;
    }
    
    .pizza-menu-item {
        flex-direction: column !important;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .pizza-half {
        position: relative;
        left: auto !important;
        right: auto !important;
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    
    .pizza-details {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
    }
    
    .pizza-desc {
        max-width: 100%;
        margin: 0 auto 20px !important;
    }
    
    .pizza-title {
        font-size: 1.8rem;
    }
    
    .pizza-value {
        font-size: 1.4rem;
    }
    
    .modal-pizza-img {
        width: 220px;
        height: 220px;
    }
    
    .modal-pizza-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .menu-wrapper {
        min-height: calc(100vh - 20px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
        position: relative;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 140px;
        height: 140px;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .corner-ornament {
        width: 40px;
        height: 40px;
    }
    
    .corner-ornament::before {
        width: 20px !important;
    }
    
    .corner-ornament::after {
        height: 20px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 11px;
    }
    
    .navbar {
        padding: 20px;
    }
    
    .nav-logo img {
        height: 80px;
    }
    
    .home-quote blockquote {
        font-size: 1.1rem;
    }
}
