/* Global Styles */
body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    text-align: center;
    background: linear-gradient(to bottom, black, #1a1a1a, #252525, #303030, #3b3b3b, #454545, #505050, #5a5a5a);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Speaker Images */
.speaker-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.small-speaker {
    width: 80px; /* Adjust this size as needed */
    height: auto;
}

/* Hero Section */
.hero {
    padding: 40px;
}

.welcome {
    font-size: 48px;
    margin-bottom: 5px;
    color: white;
}

.logo {
    max-width: 260px;
    animation: shine 3s ease-in-out infinite;
}

/* Logo Shine Animation */
@keyframes shine {
    0% { filter: brightness(1.2); }
    50% { filter: brightness(2); }
    100% { filter: brightness(1.2); }
}

/* Buttons */
.more-btn, .price-btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

.more-btn:hover, .price-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Sections */
.section {
    margin-top: 40px;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.section-title {
    font-size: 28px;
    border-bottom: 3px solid white;
    padding-bottom: 10px;
    color: white;
}

/* Dropdown Styling */
.dropdown-content {
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    color: white;
}

/* Show Class (for dropdowns) */
.show {
    display: flex !important;
    flex-direction: column;
    animation: slideDown 0.5s ease-out forwards;
}

/* Slide Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 600px) {
    .welcome {
        font-size: 36px;
    }

    .section {
        width: 95%;
    }

    .more-btn, .price-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}
