body {
    margin: 0;
    padding: 0;
    background: #EDF2FB;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}
.menu {
    font-family: 'Press Start 2P', sans-serif;
    font-size: 14px;
    color: #ecbcff;
    margin-top: 0px;
    text-align: center;
    padding-top: 5vh;
}
.menu a {
    color: #ecbcff;
    text-decoration: none;
    margin: 0 15px;
}
.menu a:hover {
    text-decoration: underline;
}
.banner {
    width: 100%;
    height: 25vh;
    background: linear-gradient(to bottom,  #4B0082, #ecbcff);
    position: relative;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel {
    position: relative;
    width: 100%;
    height: 60vh;
    margin: 20px 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Preserve image aspect ratio */
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px; /* Adjust based on your logo size */
    max-height: 90%;
    z-index: 1;
    pointer-events: none; /* Makes the logo non-interactive */
    border-radius: 100%;
}

.banner canvas {
    position: absolute;
    z-index: 0; /* Ensures animation stays behind logo */
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
}

.carousel {
    flex-grow: 1;
    max-width: 60%;
    height: 60vh;
}

.side-text {
    width: 20%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #ecbcff;
    border-radius: 15px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.8em;
    color: #4B0082;
    text-align: center;
}

.side-text h2 {
    color: #ecbcff;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel {
        max-width: 100%;
        order: -1;
    }
    
    .side-text {
        width: 80%;
        margin: 10px 0;
    }
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border: 3px solid #ecbcff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.buy-btn, .cart-btn {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.6em;
    transition: transform 0.2s;
}

.buy-btn {
    background: #ecbcff;
    color: white;
}

.cart-btn {
    background: white;
    color: #ecbcff;
    border: 2px solid #ecbcff;
}

.buy-btn:hover, .cart-btn:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .product-card img {
        height: 150px;
    }
}

/* About Page Styles */
.about-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #ecbcff;
    border-radius: 15px;
    color: #4B0082;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text h2 {
    color: #ecbcff;
    font-family: 'Press Start 2P', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.about-text p {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 1.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-text {
        margin: 20px;
        padding: 15px;
    }
    
    .about-text p {
        font-size: 1em;
    }
}

/* Contact Page Styles */
.contact-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #ecbcff;
    border-radius: 15px;
    color: #4B0082;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section h2 {
    color: #ecbcff;
    font-family: 'Press Start 2P', sans-serif;
    text-align: center;
    margin-bottom: 25px;
}

.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info p {
    font-family: Arial, sans-serif;
    margin: 15px 0;
    font-size: 1.1em;
}

.contact-info a {
    color: #4B0082;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ecbcff;
    text-decoration: underline;
}

.contact-form {
    margin-top: 30px;
}

.contact-form h3 {
    font-family: 'Press Start 2P', sans-serif;
    color: #ecbcff;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #ecbcff;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.contact-form button {
    background: #ecbcff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.8em;
    display: block;
    margin: 20px auto 0;
    transition: transform 0.2s;
}

.contact-form button:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        margin: 20px;
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 1em;
    }
}

