/* Import Bootstrap CSS */
@import url("https://maxcdn.bootstrapcdn.com/bootstrap/5.1.3/css/bootstrap.min.css");

/* Custom CSS */
body, html{
    font-family: "Gilroy", sans-serif;
    background-color: #f8f9fa; /* Light background color for the page */
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Custom CSS for dropdown */
/* Custom CSS for dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    font-size: 1.2rem; /* Larger font size for better visibility */
    padding: 12px 20px; /* Increased padding for a bigger button */
    border-radius: 8px; /* Rounded corners for the button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    background-color: #e7c34e; /* Light background color for the button */
    border: 1px solid #d1a000; /* Border to define the button edges */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e0c46b;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 8px; /* Rounded corners for dropdown */
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    border-radius: 8px; /* Rounded corners for dropdown items */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.dropdown-content a:hover {
    background-color: #d1b76e; /* Slightly darker yellow on hover */
}

.flag-icon {
    width: 30px;
    height: auto;
    margin-right: 8px;
}


.flag-icon {
    width: 30px;
    height: auto;
    margin-right: 8px;
}



.container {
    max-width: 600px; /* Limit the width of the content */
    margin: auto; /* Center the container */
    padding: 0 0px; /* Add padding on mobile */
    background-color: #e0c46b; /* Yellow background for the container */
}

.img-fluid {
    width: 100%; /* Make the image take full width */
    height: 100%; /* Make the image take full height */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}

.text-center {
    text-align: center;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #eed584; /* Yellow background for cards */
    display: flex; /* Flexbox layout */
    align-items: center; /* Center items vertically */
    margin: 0 auto; /* Center the card within the container */
    margin-bottom: 1rem; /* Space between cards */
    text-decoration: none;
    max-width: calc(95% - 2rem); /* Reduce width equally from both sides */
    padding: 0 1rem; /* Add padding inside the card */
}

.card-img {
    margin-left: 10px;
    border-radius: 15px; /* Rounded corners for the image */
    object-fit: cover;
    width: 5rem; /* Fixed width */
    height: 5rem; /* Fixed height */
    margin-right: 1rem; /* Space between image and text */
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

/* Logo styling */
.logo {
    max-width: 350px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
    object-fit: contain; /* Ensure the logo maintains its aspect ratio */
}

/* Responsive design */
@media (max-width: 768px) {
    .card-title {
        font-size: 0.9rem;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }
}

/* Footer styling */
.footer {
    background-color: #eed584; /* Light gray background */
    padding: 20px 0; /* Vertical padding */
    text-align: center; /* Center text */
    border-top: 1px solid #d3ac2e; /* Subtle border on top */
    margin-top: 20px; /* Space above the footer */
    position: relative; /* Position relative to ensure proper alignment */
    bottom: 0; /* Align to the bottom of the container */
    width: 100%; /* Full width of the container */
}

/* Ensure footer text is styled consistently */
.footer p {
    margin: 0; /* Remove default margin */
    color: #747474; /* Gray color for text */
    font-size: 0.9rem; /* Slightly smaller font size */
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer p {
        font-size: 0.8rem; /* Adjust font size on smaller screens */
    }
}
