/* CSS Document */
body {
    background-color: black;
    color: white;
}

h1 {
font-size: 24px;
color: #E1FF00; /* White text */
}

h2 {
font-size: 14px;
color: #E1FF00; /* White text */
}

#mainContent .img-fluid {
    margin-top: 80px; /* Ensure this applies to all images within #mainContent */
}

.margin-top-custom {
    margin-top: 80px; /* Adjust this value as needed, avoiding !important when possible */
}

.modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}

.modal {
    overflow-y: auto;
}

@media (min-width: 576px) {
    .modal-dialog {
        min-height: calc(100% - (1.75rem * 2));
    }
}

.modal-content {
    background-color: #fefefe; /* Light background */
    border: 1px solid #ddd; /* Subtle border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.modal-header {
    background-color: #FFFFFF; /* Match your theme color */
    color: #000000; /* White text */
}

/* Custom close button */
.modal-header .close {
    color: #FF0004;
    opacity: 1;
}

.centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px; /* Adjust or remove based on actual navbar height */
}

.card-img-top {
    width: 99%; /* Ensure image covers the card width */
    height: auto; /* Adjust height automatically to maintain aspect ratio */
    object-fit: cover; /* Cover the area of the container without losing aspect ratio */
}

.card-body .card-text {
  font-size: 1.1rem; /* adjust to taste */
}

/* Adjustments for large screens */
@media (min-width: 1025px) {
    .card-img-top {
        height: 300px; /* Fixed height for larger screens to maintain uniformity */
    }
}

/* Adjustments for medium screens - tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .card-img-top {
        height: 250px; /* Slightly smaller fixed height for tablet screens */
    }
}

/* Adjustments for small screens - mobile devices */
@media (max-width: 767px) {
    .card-img-top {
        height: 280px; /* Adjust height for smaller mobile screens */
    }
}



/* Adjustments for the navbar logo */
.navbar-logo {
    height: 30px; /* Default height for larger screens */
    width: auto; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 20px; /* Adjust for very small screens */
    }
}

/* Text sizing for various elements */
.intro-text, .main-text, .sub-text {
    font-size: 20px, 16px, 12px respectively; /* Adjusted font sizes */
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 18px; /* Adjusted for smaller screens */
    }
    
    .main-text {
        font-size: 14px; /* Adjusted for smaller screens */
    }
}

.site-footer {
    background-color: #333; /* Dark background for the footer */
    color: #fff; /* White text color */
    text-align: center; /* Center the text */
    padding: 5px 0; /* Some padding around the text */
    margin-top: 10px; /* Add space between the content and the footer */
}

/* Adjustments for footer text size based on device width */
@media only screen and (max-width: 600px) {
    .site-footer {
        font-size: 8px; /* Adjust font size for mobile devices */
    }
}

@media only screen and (min-width: 601px) {
    .site-footer {
        font-size: 12px; /* Font size for desktop devices */
    }
}

.site-footer .container {
    width: 100%;
    max-width: 960px; /* Adjust the maximum width of the footer content */
    margin: 0 auto; /* Center the container */
}

/* Styling navbar links */
.navbar-nav .nav-link {
    font-family: 'Arial', sans-serif; /* Example font family */
    font-size: 15px; /* Example font size */
    color: #ff4500; /* Example font color */
}

.navbar-nav .nav-link:hover {
    color: #ffa500; /* Lighter shade on hover */
}

.login-highlight {
    color: greenyellow !important; /* Make sure to override any existing color styles */

}

.navbar .search-highlight {
    color: greenyellow !important; /* Make sure to override any existing color styles */

} 

.navbar .join-highlight {
    color: yellow !important; /* Make sure to override any existing color styles */
}


.btn-footer {
  display: inline-block; /* Align buttons side by side */
  margin: 5px 10px; /* Spacing around buttons */
  padding: 5px 10px; /* Padding inside buttons */
  background-color: #7A7A7A; /* Bootstrap primary color */
  color: white; /* Text color */
  text-decoration: none; /* Remove underline from links */
  font-size: 16px; /* Text size */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

@media (max-width: 768px) {
  .btn-footer {
    padding: 8px 15px; /* Smaller padding */
    font-size: 14px; /* Smaller font size */
  }
}

.btn-footer:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.review-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* This makes the container fill the entire viewport height */
  padding: 20px; /* Prevents the review box from touching the edges of the viewport */
}

.review-box {
	display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
  width: 100%; /* Ensures the box takes up space but doesn't exceed the container's padding */
  max-width: 600px; /* Adjust this value based on your design requirements */
  margin-bottom: 20px; /* Adds space between review boxes */
}

/* To remove the margin from the last review box */
.review-box:last-child {
  margin-bottom: 0;
}


.review-headline {
  margin-top: 0;
  color: #333;
}

.star-rating {
  color: #f4d03f; /* Gold color */
  margin: 10px 0;
}

.review-description {
  color: #555;
}

.review-footer {
  font-style: italic;
  color: #777;
}

#gender-group input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;/* Adjust spacing between elements as needed */
}

#gender-group .gender-label {
  color: black;
	margin-left: 10px;
}

