* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #003d7a 0%, #0052a3 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 28px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #003d7a 0%, #0052a3 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.banner-content {
    flex: 1;
    padding: 40px;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-content .discount {
    font-size: 28px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.banner-image {
    flex: 1;
    text-align: center;
}

.cake-image {
    font-size: 200px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #003d7a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #0052a3;
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background: #003d7a;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f9f9f9;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    margin-bottom: 20px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-card .description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-card .price {
    font-size: 24px;
    color: #0052a3;
    font-weight: bold;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-text p {
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-box h3 {
    color: #0052a3;
    margin-bottom: 15px;
    font-size: 20px;
}

.info-box p {
    color: #666;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner {
        flex-direction: column;
        padding: 40px 0;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h2 {
        font-size: 32px;
    }

    .banner-content .discount {
        font-size: 20px;
    }

    .cake-image {
        font-size: 120px;
    }

    .products h2, .about h2, .contact h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
