/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
    filter: brightness(70%); /* Darkens the video to improve text readability */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    color: #ffea00; /* Bright yellow text for high contrast */
    max-width: 600px;
    margin: 0 auto;
}

/* Glowing Text for the Title */
.hero-content h1 {
    color: #ffea00; /* Brighter text color for the heading */
    text-shadow: 0 0 10px rgba(255, 234, 0, 0.8), 
                 0 0 20px rgba(255, 234, 0, 0.6), 
                 0 0 30px rgba(255, 234, 0, 0.4); /* Glowing effect */
    font-size: 3rem; /* Adjust font size */
    font-weight: bold;
}

/* CTA Button */
.cta {
    background-color: #ffea00;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #333;
    color: #ffea00;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Ensure full viewport height on mobile */
    }

    #background-video {
        width: 100%; /* Make sure the video spans the full width */
        height: 100%; /* Full height on mobile */
        min-width: 100%; /* Override any minimum settings */
        min-height: 100%; /* Full minimum height */
    }

    .hero-content {
        padding: 20px 30px;
        max-width: 90%;
    }

    /* Adjust product image size on smaller screens */
    .product-content img {
        max-width: 200px; /* Reduce image size */
        width: 100%; /* Make image responsive */
        height: auto;
    }

    .product-content {
        flex-direction: column; /* Stack items vertically on mobile */
        text-align: center; /* Center align the product content */
    }

    .product-details {
        max-width: 100%; /* Full width on mobile */
        text-align: center; /* Center text on mobile */
    }

    #background-video {
        object-fit: cover; /* Ensure the video fills the screen without distortion */
    }
}

/* Music Player Controls */
.music-player {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
}

.controls button {
    background-color: #ffea00;
    color: #000;
    border: none;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.controls button:hover {
    background-color: #333;
    color: #ffea00;
}

/* Product Highlights Section */
.highlights {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.highlight-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.highlight {
    width: 30%;
}

/* Black glow for h3 in highlights and product sections */
.highlights h3, .product h3 {
    color: #ffea00; /* Yellow text */
    text-shadow: 0 0 5px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 1); /* Black glow */
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
}

/* Product Section */
.product {
    padding: 50px 20px;
    text-align: center;
}

.product-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.product-content img {
    max-width: 300px;
    border-radius: 10px;
}

.product-details {
    max-width: 500px;
    text-align: left;
}

.product-details h3 {
    color: #ffea00; /* Consistent yellow text with black glow */
}

.product-details p {
    margin: 10px 0;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: #ffea00;
    margin-top: 50px;
}

.social-media a {
    color: #ffea00;
    margin: 0 10px;
}
