/* styles.css */

/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #121212;
    color: #ffffff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: linear-gradient(45deg, #ff004c, #00dbde);
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 6rem;
    letter-spacing: 2px;
    color: #000000;
    font-family: "Times New Roman", serif;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

header h1:hover {
    color: #ffffff;
    transform: scale(1.05);
}

header .tagline {
    font-size: 3rem;
    color: #000000;
    font-family: "Times New Roman", serif;
    margin-top: 5px;
}

header img.logo {
    margin-top: 10px;
    width: 480px;
    max-width: 90%;
    height: auto;
    transition: transform 0.3s ease;
}

header img.logo:hover {
    transform: scale(1.05);
}

.app-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.app-links a img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-links a img:hover {
    transform: scale(1.05);
}

.nav {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav a {
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
}

#listenNav {
    background: red;
}

.nav a:hover {
    background: #FFFF00;
    transform: scale(1.05);
    color: #000000;
}

main {
    text-align: center;
    flex-grow: 1;
}

.hero {
    position: relative;
    color: #fff;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
}

.hero-background.active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin: 0;
    font-family: 'Times New Roman', serif;
}

.hero button {
    margin-top: 20px;
    padding: 36px 75px;
    border: none;
    border-radius: 50px;
    background: #ff004c;
    color: #000000;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
}

.hero button:hover {
    transform: scale(1.05);
    color: #000000;
}

section {
    padding: 15px 20px;
    animation: fadeIn 1s ease-in-out;
}

.about, .tech-section {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2, .tech-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.about p, .tech-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Times New Roman', serif;
}

.about {
    text-align: left;
}

.tech-section {
    background: #282828;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

footer {
    background: #121212;
    color: #aaa;
    padding: 15px 0;
    text-align: center;
}

footer p {
    margin: 5px;
}

footer a {
    color: #ff004c;
    text-decoration: none;
    font-family: 'Times New Roman', serif;
}

.footer-social {
    margin-top: 10px;
}

.footer-social a {
    margin: 0 10px;
    color: #ff004c;
    font-family: 'Times New Roman', serif;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.modal-content {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease;
    font-family: 'Times New Roman', serif;
}

.close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff004c;
}

.audio-player {
    width: 100%;
    margin-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    header .tagline {
        font-size: 1.5rem;
    }

    .nav a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero button {
        padding: 36px 75px;
        font-size: 3rem;
    }

    header img.logo {
        width: 90%;
        height: auto;
    }

    .app-links {
        flex-direction: column;
        gap: 10px;
    }

    .app-links a img {
        height: 60px;
    }
}
