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

body {
    font-family: 'Tahoma', 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.pizza-float {
    position: fixed;
    font-size: 3em;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
    color: #ffd700;
}

.pizza-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pizza-2 {
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.pizza-3 {
    top: 60%;
    left: 15%;
    animation-delay: 6s;
}

.pizza-4 {
    top: 80%;
    right: 20%;
    animation-delay: 9s;
}

.pizza-5 {
    top: 45%;
    right: 5%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.8em;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-control:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.music-control:active {
    transform: scale(0.95);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: slideIn 0.8s ease-out;
}

h1 {
    font-size: 3em;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.subtitle {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.contact {
    font-size: 1.5em;
    color: #1a1a1a;
    margin-top: 15px;
    font-weight: bold;
}

.menu-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

h2 {
    font-size: 2em;
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.menu-item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.1) rotate(2deg);
}

.item-name {
    font-size: 1.3em;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-icon {
    font-size: 1.2em;
    color: #ffed4e;
    display: inline-block;
    min-width: 30px;
}

.item-prices {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.price-box {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
}

.price-box:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.size-label {
    font-size: 0.9em;
    display: block;
    margin-bottom: 3px;
}

.price {
    font-size: 1.1em;
}

.special-note {
    background: rgba(255, 87, 34, 0.2);
    border-right: 4px solid #ff5722;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.pizza-emoji {
    font-size: 2em;
    margin: 0 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nav-link {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.nav-link i {
    font-size: 1.2em;
}

.location-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.location-info {
    text-align: center;
    margin-bottom: 20px;
}

.location-info h2 {
    color: #ffd700;
    font-size: 2em;
    margin-bottom: 15px;
}

.address {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-block;
    margin: 10px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.address i {
    color: #ffd700;
    margin-left: 10px;
    font-size: 1.2em;
}

.address-text {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.admin-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.admin-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.6);
}

.admin-btn:active {
    transform: scale(0.95);
}