/* Platform Logo */
/* .platform-logo-image {
    width: 110px;
    height: 110px;
} */

#platform-logo-link {
    display: flex;
    align-items: center;
}

#platform-logo-image {
    display: block; /* Removes the extra space caused by inline-block nature of images */
    vertical-align: middle; /* Ensures the image aligns in the middle */
    width: 110px;
    height: 110px;
}

/* Base Styling for Text Elements */
.site-logo-text {
    font-size: 3rem;
    font-weight: 500;
    font-family: "Varela Round", Sans-serif;
    color: var(--e-global-color-primary); /* Default simplify color */
}

.base-name-text {
    padding-left: 10px;
}

/* Platform Name Extension Container */
.platform-name-extension-container {
    position: relative;
    /* width: 400px; */
    display: flex;
    align-items: center;
}

/* Platform Name Extension */
.platform-name-extension {
    padding-left: 5px;
    white-space: nowrap; /* Prevent text wrapping */
    flex-shrink: 1;
}

/* Platform Dropdown */
.platform-dropdown {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    position: absolute;
    top: 100%; /* Below the platform name extension */
    left: -10px;
    width: 150%; /* Match width of the platform-name-extension */
    background-color: white;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    overflow: hidden; /* Scroll vertically */
    z-index: 1000;
    padding: 5px;
}

/* Active Dropdown State */
.platform-dropdown.active {
    max-height: 450px; /* Controls the height, adjust as needed */
    opacity: 1;
    overflow: visible;
    height: auto;
}

/* Platform Dropdown Item */
.platform-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.platform-dropdown-item:last-child {
    border-bottom: none; /* Remove border for the last item */
}

/* Platform Details */
.platform-details {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    width: 100%; /* Ensure full width of the container */
    position: relative;
    padding: 0 10px;
}

/* Platform Name Styling Inside Each Item */
.platform-name {
    font-family: "Varela Round", Sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--e-global-color-primary);
}

.platform-name:hover {
    background-color: transparent; /* No hover background */
    text-decoration: none;
    font-weight: 500;
}

.coming-soon {
    align-self: flex-end; /* Align to the right horizontally */
    font-size: 1rem; /* Adjust the size if needed */
    font-family: "Varela Round", Sans-serif;
    font-weight: 500;
    color: var(--e-global-color-primary); /* Optional: color for 'Coming Soon' */
    margin-top: -15px; /* Add spacing between the platform name and the text */
}


/* Platform Dropdown Icon */
.platform-dropdown-icon {
    display: flex;
    align-items: center;
    /* margin-left: auto; Adjust spacing as needed */
    margin-left: 15px; /* Space between text and icon */
    flex-shrink: 0; /* Prevent shrinking */
}

.platform-dropdown-icon i {
    font-size: 20px; /* Adjust size as needed */
    transition: transform 0.3s ease; /* Smooth rotation effect */
}

/* Rotate Icon Class */
.rotate-icon {
    transform: rotate(90deg);
}

/* Dropdown Hover Effect */
.platform-name-extension-container:hover .platform-dropdown {
    max-height: 450px;
    opacity: 1;
}

/* Platform Dropdown Link Styles */
.platform-dropdown-item a {
    font-size: 3rem; /* Example: Set font size */
    font-weight: 500; /* Example: Set font weight */
    text-decoration: none; /* Example: Remove underline */
    color: var(--e-global-color-primary); /* Default color */
    padding-left: 0px;
}

.platform-dropdown-item a:hover {
    background-color: #f0f0f0; /* Example: Background color on hover */
    font-weight: 500; /* Example: Set font weight */
    color: var(--e-global-color-hover); /* Example: Change text color on hover */
    text-decoration: none; /* Example: Remove underline */
}




/* Responsive Design: Mobile Adjustments */
@media (max-width: 768px) {
    .platform-dropdown {
        width: 100%; /* Full width on mobile */
        left: 0;
    }

    .site-logo-text{
        font-size: 1.25rem;
    }

    .platform-name {
        font-size: 1.25rem;
    }

    #platform-logo-image {
        width: 50px;
        height: 50px;
    }

    .platform-dropdown-item a {
        font-size: 1rem; /* Example: Set font size */
    }

    .coming-soon {
        font-size: 0.5rem; /* Adjust the size if needed */
    }

    .platform-dropdown-icon i {
        font-size: 15px; /* Adjust size as needed */
        margin-top: 0px; /* Add spacing between the platform name and the text */
    }
}

