/* Full-page container */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around; /* distribute items evenly */
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Image wrapper */
.image-wrapper {
    width: 100%;
    max-width: 90%;
    flex-shrink: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-color: #fff;
}

/* Image itself */
.image-wrapper img {
    max-width: 100%;
    max-height: 60vh; /* adapt to viewport without overflowing */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

/* Placeholder text */
#placeholder {
    position: absolute;
    font-size: 16px;
    color: #888;
}

/* Audio player */
audio {
    width: 100%;
    max-width: 400px;
    outline: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* App button */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .image-wrapper img {
        max-height: 50vh; /* shrink image to leave space for controls */
    }
    audio {
        max-width: 90%;
    }
    .cta-button {
        width: 90%;
        text-align: center;
    }
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
}

.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: #fff;
}

.hero-content h1 {
    font-size: 3em;
    margin: 0.2em 0;
}

.hero-content .tagline {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1em;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid #fff;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
}

.feature {
    max-width: 500px;
    text-align: center;
}

.feature h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #666;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-around;
        padding: 80px;
    }
    .hero-image {
        max-width: 50%;
    }
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
    .features {
        flex-direction: row;
        gap: 60px;
    }
}
