/* 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 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;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.button-link:hover {
    background-color: red;
}


/* 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;
    }

/* Container for the row */
    .custom-row {
        display: flex;
        flex-wrap: wrap; /* Allows the items to wrap if the row is too long */
        justify-content: space-between; /* Space between items */
        gap: 10px; /* Space between columns */
    }

    /* Each column in the row */
    .custom-col {
        flex: 1; /* Flex-grow to make columns responsive */
        min-width: 150px; /* Minimum width of each column */
        max-width: 200px; /* Maximum width of each column */
        box-sizing: border-box; /* Include padding and border in width and height */
    }

    /* Style for each card */
    .custom-card {
        background-color: #f9f9f9; /* Light background color */
        padding: 10px; /* Padding inside the card */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for the card */
        text-align: center; /* Center the content inside the card */
    }

    /* Style for the images */
    .custom-card-img {
        max-width: 100%; /* Make sure the image fits inside the column */
        height: auto; /* Maintain aspect ratio */
        border-radius: 4px; /* Slightly rounded corners for the image */
    }


    @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 */
        }
    }