
/* Full-Page Banner Styles with Responsive Design */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: #1e1e1e; /* Matching the logo's background color */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-banner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.banner-content {
    max-width: 700px;
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 100%; /* Adjust logo size based on screen width */
    height: auto;
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffa500; /* Orange color matching logo accents */
}

.banner-content .tagline {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffcc66; /* Lighter orange for tagline */
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff; /* White text for description */
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.download-btn {
    display: inline-block;
    padding: 15px 25px; /* Increased padding for better visibility */
    background-color: #ff6600; /* Bold orange button */
    color: white;
    text-decoration: none;
    font-size: 1.4rem; /* Larger font size for clarity */
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    width: calc(50% - 20px); /* Buttons take 50% width minus gap */
    box-sizing: border-box;
}

.download-btn:hover {
    transform: scale(1.1);
}

.android-btn {
    background-color: #34A853; /* Green for Android */
}

.android-btn:hover {
    background-color: #4CAF50; /* Lighter green on hover */
}

.ios-btn {
    background-color: #007AFF; /* Blue for iOS */
    cursor: pointer;
}

.ios-btn:hover {
    background-color: #339AFF; /* Lighter blue on hover */
}

.ios-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #ff6600; /* Bold orange background for visibility */
    color: #ffffff; /* White text for high contrast */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    font-weight: normal;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem; /* Reduce font size for smaller screens */
    }

    .banner-content .tagline {
        font-size: 1.2rem; /* Adjust tagline size */
    }

    .download-btn {
        width: 100%; /* Buttons stack vertically on smaller screens */
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .banner-content p {
        font-size: 1rem; /* Smaller text for compact screens */
    }
}
