/* Specific styles for the homepage */
.hero-section {
    height: 100vh;
    background-color: #111; /* Darker background for contrast */
    color: white;
    position: relative;
    overflow: hidden;
}

#bg-keychain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 70%);
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1rem;
}

.section { padding: 80px 0; }
.text-center { text-align: center; }
.cta-button { display: inline-block; margin-top: 2rem; padding: 15px 35px; background-color: #007bff; color: #fff; font-family: 'Poppins', sans-serif; text-decoration: none; font-size: 1.2rem; border-radius: 5px; transition: background-color 0.3s ease; }
.cta-button:hover { background-color: #0b5ed7; }

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}
