/* Global styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
}

/* Header styles */
.header {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px; /* Adjust the height as needed */
}

.header-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header-links li {
    margin-right: 20px;
}

.header-links li:last-child {
    margin-right: 0;
}

.header-links a {
    color: #fff;
    text-decoration: none;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  color: #c0392b; /* Red color */
}

a {
  color: #c0392b; /* Red color for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Index page styles */
.index-model {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

.index-model h2 {
  margin-top: 0;
}

.model-list {
    display: flex;
    flex-wrap: wrap;
}
.model-item {
    width: 25%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}


/* Model page styles */
.model-container-main {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}

.model-picture {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.model-bio {
  line-height: 1.6;
}

.model-details {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.model-details-item {
  flex: 0 0 50%;
  padding: 5px;
}

.model-details-label {
  font-weight: bold;
}

.model-willingnesses {
  list-style: none;
  padding: 0;
}

.model-willingnesses li {
  display: inline-block;
  margin-right: 10px;
  color: #c0392b; /* Red color */
}

/* Additional styles */
/* Add any additional styles you need here */

/* Add this CSS to your existing styles */

/* Grid layout styles */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.model-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.model-link img {
  width: 100%;
  border-radius: 5px;
}

.live-now-button {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c0392b; /* Red color */
  color: #fff; /* White font color */
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.live-now-button:hover {
  background-color: #a52714; /* Darker shade of red on hover */
}

/* Footer */
footer {
  background-color: #f9f9f9;
  padding: 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  max-width: 100px;
}

.footer-logo p {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: inline-block;
  margin-right: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.footer-social p {
  margin: 0;
  font-size: 16px;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.footer-social li {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  max-width: 30px;
}

/* Footer Disclaimer */
.footer-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px

#object_container {
  width: 900px;
  height: 540px;
  margin: 0 auto; /* This centers the div horizontally */
}

/* Container for the side-by-side columns */
/* Style for the container holding model-profile and model-about */
.model-container {
  display: flex; /* Use flexbox to arrange items in a row by default */
  justify-content: space-between; /* Create space between the columns */
  align-items: flex-start; /* Align columns to the top */
}

/* Style for model-profile */
.model-profile {
  flex: 1; /* Allow the item to grow and occupy available space */
  margin-right: 20px; /* Add some space between the columns */
}


.model-section {
      display: flex;
      justify-content: space-around;
    }

    .model-about {
      flex: 1;
      margin: 10px;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #f8f8f8;
    }

.button-link {
    display: inline-block; /* Makes the link behave like a block-level element */
    background-color: red; /* Sets the background color to red */
    color: white; /* Sets the text color to white */
    padding: 10px 20px; /* Adds padding to the button */
    margin: 5px; /* Adds some margin around each button */
    text-decoration: none; /* Removes the underline from the link */
    text-align: center; /* Centers the text inside the button */
    border-radius: 5px; /* Rounds the corners of the button */
}

.button-link:hover {
    background-color: darkred; /* Changes the background color on hover */
}



/* Style for the breadcrumb container */
.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* Style for the breadcrumb links */
.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

/* Style for the separator between breadcrumb items */
.breadcrumb span {
  margin: 0 5px;
}

.related-models {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 20px;
    }

    .related-model {
        flex: 1 0 21%; /* This will create an approximately 5-column layout */
        margin: 1%;
        text-align: center;
    }

    .related-model img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .related-model-name {
        text-transform: capitalize;
        font-size: 16px;
        margin-top: 5px;
    }

    @media screen and (max-width: 1200px) {
        /* Adjustments for smaller screens */
        .related-model {
            flex: 1 0 45%; /* This will create two columns on smaller screens */
        }
    }

    @media screen and (max-width: 600px) {
        /* Adjustments for even smaller screens */
        .related-model {
            flex: 1 0 100%; /* This will create one column on very small screens */
        }
    }