/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Install Banner */
.install-banner {
    background: #ffeb3b;
    padding: 15px 20px;
    text-align: center;
    color: #000;
    font-size: 14px;
}

.install-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.install-content i {
    font-size: 18px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.step-number {
    background: #2196f3;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Main Header */
.main-header {
    background: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.logo {
    width: 400px;
    height: 300px;
    background: #000000;
    border: 4px solid #d32f2f;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    box-shadow: 
        0 10px 30px rgba(211, 47, 47, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(211, 47, 47, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.logo-image {
    width: 110%;
    height: 149%;
    object-fit: scale-down;
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.brand-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    letter-spacing: 2px;
}

.tagline {
    background: #ffeb3b;
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.menu-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hours {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Menu Categories */
.menu-categories {
    background: #1a1a1a;
    padding: 30px 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.category-btn {
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px 15px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffeb3b;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.category-btn.active {
    background: #b71c1c;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.category-btn i {
    font-size: 2rem;
}

/* Menu Content */
.menu-content {
    background: #1a1a1a;
    padding: 20px;
}

.menu-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.menu-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-items {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #d32f2f;
    color: white;
}

.item-image {
    width: 280px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #d32f2f;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
    margin-right: 25px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-item:hover .product-image {
    transform: scale(1.05);
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-left: auto;
}

.order-btn {
    background: #4caf50;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    color: white;
    text-decoration: none;
}

.order-btn i {
    font-size: 1rem;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 8px;
}

.description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.4;
}

.price {
    background: #d32f2f;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.price:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
}

.address, .contact {
    margin-bottom: 25px;
}

.address h3, .contact h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.address p {
    color: #2196f3;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.address a:hover p {
    color: #1976d2;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.address i {
    color: #d32f2f;
    font-size: 1.2rem;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-icon.phone {
    background: #4caf50;
}

.contact-icon.facebook {
    background: #2196f3;
}

.contact-icon.whatsapp {
    background: #4caf50;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-btn:hover,
.footer .btn-success:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .install-banner {
        padding: 12px 15px;
    }
    
    .install-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .install-steps {
        font-size: 11px;
    }
    
    .main-header {
        padding: 20px 15px;
    }
    
    .logo {
        width: 350px;
        height: 260px;
        border: 3px solid #d32f2f;
        border-radius: 20px;
        box-sizing: border-box;
        box-shadow: 
            0 8px 25px rgba(211, 47, 47, 0.3),
            0 4px 12px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: perspective(800px) rotateX(3deg);
    }
    
    .logo:hover {
        transform: perspective(800px) rotateX(0deg) scale(1.02);
        box-shadow: 
            0 12px 35px rgba(211, 47, 47, 0.4),
            0 6px 15px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .brand-text h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 1.1rem;
        padding: 8px 18px;
    }
    
    .menu-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .hours {
        font-size: 1.2rem;
    }
    
    .menu-categories {
        padding: 20px 15px;
    }
    
    .category-grid {
        gap: 12px;
    }
    
    .category-btn {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .category-btn i {
        font-size: 1.6rem;
    }
    
    .menu-content {
        padding: 15px;
    }
    
    .menu-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-image {
        width: 100%;
        height: 400px;
        align-self: center;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .item-actions {
        align-self: stretch;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .price {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .order-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .address h3, .contact h3 {
        font-size: 1.4rem;
    }
    
    .address p {
        font-size: 1.1rem;
    }
    
    .contact-icons {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    .footer p {
        font-size: 1rem;
    }
    
    .contact-btn,
    .footer .btn-success {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .install-banner {
        padding: 10px 12px;
    }
    
    .install-steps {
        font-size: 10px;
    }
    
    .step-number {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .main-header {
        padding: 15px 10px;
    }
    
    .logo {
        width: 280px;
        height: 210px;
        border: 2px solid #d32f2f;
        border-radius: 18px;
        box-sizing: border-box;
        box-shadow: 
            0 6px 20px rgba(211, 47, 47, 0.3),
            0 3px 10px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: perspective(600px) rotateX(2deg);
    }
    
    .logo:hover {
        transform: perspective(600px) rotateX(0deg) scale(1.02);
        box-shadow: 
            0 10px 30px rgba(211, 47, 47, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .brand-text h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .tagline {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .menu-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    .hours {
        font-size: 1rem;
    }
    
    .menu-categories {
        padding: 15px 10px;
    }
    
    .category-grid {
        gap: 10px;
    }
    
    .category-btn {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .category-btn i {
        font-size: 1.4rem;
    }
    
    .menu-content {
        padding: 10px;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .item-image {
        width: 100%;
        height: 350px;
        align-self: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .item-info h3 {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .item-actions {
        gap: 8px;
    }
    
    .price {
        font-size: 1.1rem;
        padding: 6px 10px;
    }
    
    .order-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .contact-section {
        padding: 15px 10px;
    }
    
    .address h3, .contact h3 {
        font-size: 1.2rem;
    }
    
    .address p {
        font-size: 1rem;
    }
    
    .contact-icons {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 15px 10px;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    .contact-btn,
    .footer .btn-success {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .logo {
        width: 250px;
        height: 190px;
        border: 2px solid #d32f2f;
        border-radius: 15px;
        box-sizing: border-box;
        box-shadow: 
            0 5px 18px rgba(211, 47, 47, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: perspective(500px) rotateX(1deg);
    }
    
    .logo:hover {
        transform: perspective(500px) rotateX(0deg) scale(1.02);
        box-shadow: 
            0 8px 25px rgba(211, 47, 47, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    
    .brand-text h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .tagline {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .menu-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .hours {
        font-size: 0.9rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .install-banner {
        padding: 8px 15px;
    }
    
    .install-steps {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .main-header {
        padding: 15px 20px;
    }
    
    .logo-container {
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .menu-categories {
        padding: 15px 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(211, 47, 47, 0.3);
    border-top: 3px solid #d32f2f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 