/* Position the Language Switcher */
.language-switcher {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

/* Style the Language Image */
#language-btn {
    width: 100px;
    height: 50px;
    object-fit: contain;
    background: none; /* No background */
    border: none; /* No border */
    padding: 0; /* Remove extra spacing */
    /*border-radius: 5px;*/
}

/* Dropdown Menu - Hidden by Default */
.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    /*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
    padding: 10px;
}

/* Show Dropdown When Clicked */
.language-switcher.active .language-dropdown {
    display: block;
}

/* Dropdown Links */
.language-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.language-dropdown a:hover {
    background: #f0f0f0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    /*background: url('images/placeholder-bg.jpg') no-repeat center center fixed;*/
    background: #000;
    background-size: cover;
    text-align: center;
}

/* Wrapper for centering and setting max width */
.container {
    max-width: 1200px; /* You can update this value later */
    margin: 0 auto;
    padding: 0 20px; /* Adds padding so content doesn't touch screen edges */
}

/* Banner Image - Force 16:9 ratio */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevents any unwanted stretching */
}

header img {
    width: 100%;
    height: auto;
    max-height: calc(100vw * 1 / 2.35); /* Maintains a 2.35:1 aspect ratio */
    object-fit: cover;
}

.title {
    /* border: 2px solid #FF6600; /* Border color similar to your existing UI */
    padding: 15px;
    text-align: center;
    color:#f0f0f0;
    font-size: 25px;
    font-weight: bold;
    margin-top: 25px;
    /*background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    /*border-radius: 10px; /* Rounded corners */
}
.slogan {
    /* border: 2px solid #FF6600; /* Border color similar to your existing UI */
    padding: 15px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    color:#f0f0f0;
    font-size: 20px;
    font-weight: semi-bold;
    margin-top: -10px;
    margin-bottom: 5px;
    /*background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    /*border-radius: 10px; /* Rounded corners */
}

.framed-text01 {
    /* border: 2px solid #FF6600; /* Border color similar to your existing UI */
    padding: 15px;
    max-width: 650px;
    margin: 20px auto;
    text-align: center;
    color:#f0f0f0;
    font-size: 16px;
    margin-top: -5px;
    margin-bottom: 50px;
    /*background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    /*border-radius: 10px; /* Rounded corners */
}

#video iframe {
    width: 90%;  /* Make it take 90% of the container */
    max-width: 840px; /* Limit max size */
    height: auto; /* Auto scale height */
    aspect-ratio: 16 / 9; /* Maintain correct aspect ratio */
}

/* Align new links/icons below "More text here" */
.extra-links-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.extra-links-icons img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.framed-text {
    /* border: 2px solid #FF6600; /* Border color similar to your existing UI */
    padding: 15px;
    max-width: 650px;
    margin: 20px auto;
    text-align: center;
    color:#f0f0f0;
    font-size: 16px;
    margin-top: 50px;
    margin-bottom: 50px;
    /*background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    /*border-radius: 10px; /* Rounded corners */
}

#download {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 100px; /* Adds space below */
}

.icon-container {
    display: flex;
    flex-direction: row; /* Stack icon and text vertically or horizontally */
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.icon-container img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.download-link {
    font-weight: bold;
    color: #FF6600;
    text-decoration: none;
    margin-right: 50px;
    font-size: 25px; /* Adjustable text size */
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Adjust Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Copyright (Left Aligned) */
.footer-bottom {
    text-align: left;
}

/* Policy Links (Centered) */
/* Make sure footer links are white */
.footer-links {
    display: flex; /* Make the container a flexbox */
    flex-direction: row; /* Ensure links are in a row */
    justify-content: center; /* Center them horizontally */
    gap: 15px; /* Space between links */
    padding-left: 300px; /* Remove the left padding */
   /* padding-top:10px;*/
    margin-top: 20px; /* Adjust spacing from other elements */
}
/* Specific fix for English only */
[lang="en"] .footer-links {
    margin-top: 40px; /* Adjust only for English */
}

/* Ensure links look clean */
.footer-links a {
    color: white !important;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline; /* Optional hover effect */
}

/* Social Icons (Right Aligned) */
.social-media-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-media-icons img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}