/* ------------------------------------------------------ */
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Comic Neue', Arial, sans-serif; 
    color: white;
    display: flex;
    flex-direction: column;
}
/* ------------------------------------------------------ */
/* Styles for the fixed top menu */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Fallback background color */
    background-color: rgba(0, 0, 0, 0.4); /* Transparent black background */
    z-index: 1000; /* Ensure menu is above other content */
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none; 
    width: 90%;
    margin: 5px;
}


.menu-items > div {
    position: relative;
}

.menu-items a {
    text-decoration: none;
    color: white;
    padding: 2px 80px;
    display: block;
    transition:color 0.3s;
}

.menu-items a:hover {
    color: white;
    color: #f7b967; /* Change color on hover */
}


/* Dropdown styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    width: auto;
}

.dropdown-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dropdown-content ul {
    margin-bottom: 5px;
}

.dropdown-content a {
    color: white;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    color: white;
    background-color: #f7b967; /* Change background color on hover */
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Nested dropdowns */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    top: 0%; /* Position below the parent item */
    left: 100%;   /* Align to the left of the parent item */
}

.dropdown-submenu:hover .submenu-content {
    display: block;
}

/* Class to show dropdown content */
.show {
    display: block !important;
}

/* Styling for floating containers */
#floating-image-container {
    display: none; /* Initially hidden */
}

#floating-image {
    max-width: 100%;
    max-height: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Additional styling for specific dropdowns */
.dropdown-content-chart {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 600px; /* Adjust width as needed for your chart */
    padding: 10px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.4); /* Changed box shadow to blue */
    display: none;
}

.dropdown-content-chart iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.dropdown-content-buy {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 400px; /* Adjust width as needed for your buy order iframe */
    padding: 10px;
    z-index: 1000;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.4); /* Changed box shadow to blue */
    display: none;
}

.dropdown-content-buy iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Show dropdown content */
#floating-chart-container.show,
#floating-buy-container.show {
    display: block;
}


/* ------------------------------------------------------ */
.background-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}    
.background-media {
    position: relative;
    flex: 0 0 95%;
    width: 100%;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    display: none; 
}

.content {
    position: absolute;
    top: 55%;
    transform: translate(20%, -50%);
    text-align: center;
    width: 45%;
    z-index: 2;
}

.content h1 {
    font-size: 20px;
    margin: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 5px solid #38ACCF;
    border-radius: 10px;
}


/* ------------------------------------------------------ */

.contact-section {
    height: 5%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    background-image: url('Background.jpg'); 
    background-size: cover;
}

.contact-list {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 1px 1px;
}

.contact-list a {
    margin: 10px;
    text-decoration: none;
    color: white;
    font-size: 22px;
}

.contact-list a:hover {
    color: #f7b967;
}

/* ------------------------------------------------------ */

.price {
    font-size: 20px;
    color:White;
    background: rgba(0, 0, 0, 0.1);
    padding: 1px 1px;
    border-radius: 5px;
}

.video-container {
    text-align: center;
    margin: 0px 0;

}

.shwamos-entry-video {
    width: 60%;
    height: auto;
    border: 5px solid #38ACCF; /* Changed border color and added shorthand */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);   
}

.phantom-button {
    width:40px;
    height: 30px;
    cursor: pointer;
}
.no-decoration-link {
    text-decoration: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color:white;
}
/* CSS for the floating container */
.wrapper1 {
    position: absolute;
    bottom: 6%; 
    left: 0.5%;
    width: 25%;    
    height: auto;
    align-items: Center;
    background-color: rgba(244, 171, 17, 0.7);
    z-index: 1001; /* Set a z-index for wrapper1 */
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.containerDate {
        width: 100%; 
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: Center;
    padding: 5px; /* Adjust padding as needed */
    text-align: Left;
    margin-Top: 1px;
    margin-bottom: 1px;
    font-weight: bold;
}

.toggle-btn {
    padding: 2px 4px;
    margin: 2px;
    border: none;
    cursor: pointer;
    background-color: #333;
    color: white;
    border-radius: 2px;
    width: 100%; /* Make the button take the full width */
}

.toggle-btn.active {
    background-color: #38ACCF;
}


/* ------------------------------------------------------------------------------------ */

@media (max-width: 768px) {
    .menu-items a {
    font-size: 14px; /* Set menu font size to 12px for smaller screens */
    }
    .menu-items a {
        font-size: 12px; 
    }  
    .dropdown-content {
    	min-width: 100%;
        background-color: #000;
        box-shadow: 0 0 10px rgba(0, 0, 0, 1);
        }
   
    .background-video {
        display: none; /* Hide video at lower resolutions */
    }
    
  .background-image {
    display: BLOCK; 
}  
    .content {
        position: absolute;
        top: 45%;
        left: 0%;
        transform: translate(10%, 0%);
        text-align: center;
        width: 80%;
        z-index: 2;
        margin: 10px 0;

    }
    .content h1 {
         font-size: 14px;
    }


.wrapper1 {
    left: 0%;
    width: 100%;
    background-color: rgba(244, 171, 17, .8);
         border-radius: 0px;
    }
.wrapper2 {
    left: 0%;
    width: 100%;
    background-color: rgba(244, 171, 17, .8);
         border-radius: 0px;
    }    
    .shwamos-entry-video {
        top: 80%;
        width: 80%;
        border-radius: 5px;
    }
    .content {
          top: 35%;
    }
                
    .content h1 {

         font-size: 12px;
    }

    .price,
    .contact-list a,
    .contact-list i {
        font-size: 14px;
    }

    .menu-items {
        flex-direction: column; /* Stack menu items vertically */
    }

    .menu-items li {
        width: 100%; /* Make each menu item full width */
        text-align: center; /* Center the text */
    }
    
    .floating-image-container {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%; /* Adjust width as needed */
        max-width: 300px; /* Example: limit maximum width */
        z-index: 1000; /* Ensure it's above other content */
    }
}

}