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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .header-container {
        padding: 0 10px;
    }
}

/* Header */
header {
    background: linear-gradient(135deg, #d62525, #f48836);
    color: white;
    padding: 1rem 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.pizza-emoji {
    font-size: 2rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.scroll-to-top {
    /* display: none; */
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    padding-bottom:5px;
}

/* Interest Form */
.interest-form {
    background: linear-gradient(180deg, #d32f2f, #db6a01, #e0ac02);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b35, #ff9500);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        margin: 0 auto;
    }
    
    nav ul {
        display: none;
    }
}

/* Success Message */
.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.about-link-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    background: linear-gradient(90deg, #ff9500 60%, #ff6b35 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255,107,53,0.15);
    transition: background 0.3s, transform 0.2s;
}
.about-link-btn:hover {
    background: linear-gradient(90deg, #ff6b35 60%, #ff9500 100%);
    transform: translateY(-2px) scale(1.04);
}