body {

    font-family: Arial, sans-serif;

    color: #333;

    background-color: #f1f1f1;

    margin: 0;

    padding: 0;

}



header nav {
    background-color: #222;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between; /* Positions items on opposite ends */
    align-items: center; /* Vertically centers items in the nav */
}

.join-button {
    background-color: darkgreen; /* Theme color for the button */
    color: white;
    padding: 10px 20px;
    text-decoration: none; /* Removes underline from the link */
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.join-button:hover {
    background-color: #013220; /* Darker green when hovered */
}

span {
    font-size: 18px; /* Adjust font size as necessary */
}

.chic-button {
    background-color: white; /* Theme color for the button */
    color: black;
    padding: 10px 20px;
    text-decoration: none; /* Removes underline from the link */
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.chic-button:hover {
    background-color: #404040; /* Darker grey when hovered */
}




.featured-model {
    display: flex; /* Ensures that child elements line up horizontally */
    align-items: center; /* Vertically aligns children in the middle */
    justify-content: space-between; /* Spaces children with maximum distance */
    padding: 20px; /* Adds padding around the content */
    background-color: white; /* Optional: sets background color */
    margin: 20px; /* Adds margin around the section */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Adds shadow for depth perception */
}

.model-image {
    width: 50%; /* Adjusted width */
    flex-shrink: 0; /* Prevents the image container from shrinking */
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    transition: transform 0.3s ease; /* Smooth transition for hover effects */
}

.model-image a {
    display: block; /* Ensures the link uses the full area of its container */
    position: relative; /* Ensures layering within the container */
    z-index: 2; /* Higher z-index so it's above the image but below the overlay */
    width: 100%;
    height: 100%;
}

.model-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: opacity 0.3s ease; /* Smooth transition for the opacity change */
}

.model-image::after {
    content: "View Live Sex Cam"; /* Customizable caption text */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Initially transparent */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Initially hidden */
    transition: background-color 0.3s ease, opacity 0.3s ease;
    font-size: 20px;
    border-radius: 5px; /* Matches the image border-radius */
    z-index: 3; /* Ensures it's on top when visible */
    pointer-events: none;  /* Allows clicks to pass through the pseudo-element */
}

.model-image:hover::after {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    opacity: 1; /* Make the caption visible */
}

.model-image:hover img {
    opacity: 0.7; /* Slightly reduces the image opacity to focus on the caption */
}

.model-image:hover {
    transform: scale(1.05); /* Optional: Scales up the image container slightly */
}

.model-details {
    flex-grow: 1; /* Allows the details box to fill up the remaining space */
    padding: 20px;
    box-shadow: none; /* You may remove or keep the shadow as per your design */
}


.model-details h1 {

    color: darkgreen; /* Change from orange to dark green */

}




.live-feed {
    margin-top: 20px; /* Adds space above the live feed section */
    border: 1px solid #ccc; /* Adds a subtle border around the live feed */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Adds depth with a
}

.live-feed h2 {
    color: #333; /* Dark text for heading */
    font-size: 24px; /* Large font size for emphasis */
}

.live-feed  p {
    color: #666; /* Grey text for description */
    font-size: 16px; /* Readable text size */
}



button {

    background-color: darkgreen; /* Change from orange to dark green */

    color: white;

    border: none;

    padding: 10px 20px;

    font-size: 16px;

    cursor: pointer;

}



button:hover {

    background-color: #013220; /* Darker green for hover effect */

}

.chat-button {
    background-color: darkgreen; /* Themed button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none; /* Removes underline from links */
    display: inline-block; /* Makes the link behave like a button */
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    font-size: 16px; /* Matching the font size of typical buttons */
    text-align: center; /* Centers text within the button */
    cursor: pointer; /* Changes cursor to pointer to indicate clickable */
}

.chat-button:hover {
    background-color: #013220; /* Darker green for hover effect */
}




.categories, .other-models {

    padding: 20px;

}



footer {

    background-color: #222;

    color: white;

    text-align: center;

    padding: 10px;

    position: fixed;

    bottom: 0;

    width: 100%;

}

.other-models {
    padding: 20px;
    background-color: #fff; /* optional: changes background color */
}

.model-suggest-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* This will space out the grid items */
    gap: 20px; /* Adds space between the grid items */
}

.model-suggest-card {
    flex-basis: calc(25% - 20px); /* Adjust size for 4 items per row, subtract gap */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden; /* Keeps the image within the borders of the border-radius */
}

.model-suggest-card a {
    display: block;
    color: inherit; /* Prevents color changes on links */
    text-decoration: none; /* Removes underline from links */
}

.model-suggest-card img {
    width: 100%;
    display: block; /* Removes bottom space/gap */
    height: 200px; /* Fixed height, or use 'object-fit' if aspect ratio needs to be maintained */
    object-fit: cover;
}

.model-suggest-info {
    padding: 10px;
    background-color: #f5f5f5; /* Light background for the text area */
}

.model-suggest-info h3 {
    margin: 5px 0;
    font-size: 16px; /* Adjust font size as needed */
    color: darkgreen; /* Theme color */
}

.model-suggest-info p {
    margin: 0;
    font-size: 14px;
    color: #666; /* Subdued text color for age and category */
}
@media (max-width: 1024px) {
    .model-suggest-card {
        flex-basis: calc(50% - 20px); /* Changes to 2 items per row on tablets and below */
    }
}

@media (max-width: 600px) {
    .model-suggest-card {
        flex-basis: 100%; /* Stacks the grid items on very small screens */
    }
}

.affiliate-overlay {
    position: fixed; /* or 'absolute' if within a relative container */
    top: 20%; /* Adjust based on best visibility */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent black */
    color: white;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000; /* Ensures it sits above other content */
}

.overlay-content {
    padding: 20px;
}

.affiliate-overlay h2 {
    font-size: 24px;
    color: #FFD700; /* Gold color for attention */
}

.affiliate-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.affiliate-button {
    background-color: #FF4500; /* Vivid orange */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline from links */
    display: inline-block; /* Aligns properly with text */
}

.affiliate-button:hover {
    background-color: #FF6347; /* Lighter orange on hover */
    cursor: pointer;
}

/* Optional: Animation to catch the eye */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.affiliate-overlay {
    animation: fadeIn 2s ease-in-out;
}


