
/* style.css (Modified and Optimized for Mobile) */
body {
    text-align: right !important;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #303358 !important;
    color: #333;
    line-height: 1.6; /* Improved readability */
}

/* Basic Responsive Container */
.container {
    width: 95%; /* Take up most of the screen width on small devices */
    max-width: 960px; /* But don't get too wide on large screens */
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Include padding in width calculation */
}

header, footer {
    background-color: #ff8c00; /* Orange */
    color: white;
    text-align: center;
    padding: 1em 0;
}

/* Make header logo responsive */
header .logo {
    max-width: 100px;  /* Adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto 10px; /* Center the logo */
}


nav {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center; /* Center navigation links */
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block; /* Make links block-level for better spacing */
    margin: 5px; /* Add spacing between links */
}

nav a:hover {
    background-color: #ddd;
}

/* Product Images - Stack on smaller screens */
.product-images {
    display: flex;
    flex-direction: column; /* Stack images vertically */
    align-items: center;
    margin-bottom: 20px;
}

.product-images img {
    max-width: 100%;  /* Responsive images */
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 10px; /* Spacing between images */
}

/* Video Container - Responsive */
.video-container {
    justify-self: center;
    position: relative;
    padding-bottom: 56.25%;
    height: 0px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 75%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.key-features {
    list-style: disc;
    padding-left: 20px;
}

.key-features li {
    margin-bottom: 5px;
}

a {
    color: #0b001e;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.download-link {
    background-color: #ff8c00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.download-link:hover {
    background-color: #e67300;
}

.buy-button {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.buy-button:hover {
    background-color: #3e8e41;
}

.concerto-section {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.col-md-4 {
    margin: 0px 2px;
    border-radius: 5px;
    background: #9f9f9f11;
}

/* Popup styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%; /* Popup width on smaller screens */
}

.close-button {
    background-color: #ccc;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.toolbar {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: right;
}

.toolbar button {
    background-color: #555;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.toolbar button:hover {
    background-color: #777;
}

.news-widget {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

.news-widget h3 {
    margin-top: 0;
}

.latest-news-container {}

.latest-news-desktop {
    display: none;
}

.latest-news-desktop .news-item {
    display: inline-block;
    width: 30%; /* Adjust as needed */
    margin-right: 10px; /* Adjust spacing as needed */
    vertical-align: top;
}

.latest-news-mobile {
    list-style: none;
    padding: 0;
}

.latest-news-mobile li {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.latest-news-mobile li:last-child {
    border-bottom: none;
}

/* Media Queries for Tablets and Larger Screens */
@media (min-width: 768px) {
    .container {
        width: 80%;  /* Wider container on larger screens */
    }

    .product-images {
        flex-direction: row; /* Display images in a row on tablets */
        justify-content: space-around; /* Distribute images evenly */
    }

    .product-images img {
        max-width: 45%; /* Allow two images side-by-side */
    }
    /* Show desktop layout, hide mobile layout */
    .latest-news-desktop {
        display: block;
    }

    .latest-news-mobile {
        display: none;
    }
}

@media (min-width: 992px) {
    /* Further adjustments for larger screens */
    .product-images img {
        max-width: 30%; /* Allow more images in a row */
    }
}

/* Floating WhatsApp button styles */
.whatsapp-button-container {
    position: fixed;
    z-index: 999; /* Ensure it's on top of other elements */
}

.whatsapp-button-container.bottom-right {
    bottom: 20px;
    right: 20px;
}

.whatsapp-button-container.bottom-left {
    bottom: 20px;
    left: 20px;
}

.whatsapp-button-container.top-right {
    top: 20px;
    right: 20px;
}

.whatsapp-button-container.top-left {
    top: 20px;
    left: 20px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.whatsapp-button i {
    margin-right: 5px;
}

.news-widget h2 {
    background: #ff8c0066;
    padding: 5px;
    border-radius: 5px
}

