/* Model Profile Header Section */
.model-profile-header {
    background-color: #222; /* Dark background */
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

.model-profile-header .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.model-profile-header .model-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* Circular image */
    border: 4px solid #6b0034; /* Magenta border */
}

.model-profile-header .model-info h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: #fff; /* White text for the title */
}

.model-profile-header .model-info p {
    font-size: 16px;
    color: #9c9c9c; /* Lighter gray for the description */
}

.model-profile-header .header-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.model-profile-header .phone-btn,
.model-profile-header .chat-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.model-profile-header .phone-btn {
    background-color: #b58d42; /* Gold color */
}

.model-profile-header .chat-btn {
    background-color: #27ae60; /* Green color */
}

.model-profile-header .phone-btn:hover {
    background-color: #a87d3c; /* Darker gold on hover */
}

.model-profile-header .chat-btn:hover {
    background-color: #219150; /* Darker green on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .model-profile-header .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .model-profile-header .model-info h1 {
        font-size: 20px;
    }

    .model-profile-header .model-info p {
        font-size: 14px;
    }

    .model-profile-header .phone-btn,
    .model-profile-header .chat-btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* General Styles for the Model Profile Page */
.model-profile-page {
    padding: 40px 20px;
    background-color: #fdf0f5; /* Light magenta background */
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Container Layout */
.model-profile-page .container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Container: Model Images */
.model-profile-page .left-container {
    flex: 1 1 60%; /* 60% width for the gallery container */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.model-profile-page .model-gallery h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #6B0034; /* Magenta */
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.model-profile-page .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 370px); /* Two images per row */
    gap: 20px;
    justify-content: center;
}

.model-profile-page .gallery-image {
    width: 350px; /* Fixed width */
    height: 450px; /* Fixed height */
    object-fit: cover;
    border-radius: 10px;
    border: 6px solid transparent; /* Start with no border */
    background-image: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
    background-origin: border-box; /* Make the gradient visible within the border */
    background-clip: content-box, border-box; /* Clip the gradient */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-profile-page .gallery-image:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Right Container: Model Details and Pricing */
.model-profile-page .right-container {
    flex: 1 1 35%; /* 35% width for details and pricing */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Common Styles for Details and Pricing Boxes */
.model-profile-page .model-details,
.model-profile-page .model-pricing {
    width: 350px; /* Match gallery-image width */
    height: auto; /* Match gallery-image height */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content at the top */
}

.model-profile-page .model-details h2,
.model-profile-page .model-pricing h2 {
    font-size: 20px;
    margin-bottom: 5px; /* Reduced space below the heading */
    color: #6B0034; /* Magenta */
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.model-profile-page .model-details ul,
.model-profile-page .model-pricing ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove additional margin */
}

.model-profile-page .model-details li,
.model-profile-page .model-pricing li {
    margin-bottom: 8px;
    font-size: 12px; /* Reduced text size */
    color: #333;
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background-color: #fdf8fc;
    border-radius: 5px;
}

.model-profile-page .model-details li strong,
.model-profile-page .model-pricing li strong {
    color: #6B0034; /* Magenta for labels */
    font-size: 12px; /* Reduced text size */
}

/* Contact Section */
.model-profile-page .contact-section {
    margin-top: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.model-profile-page .contact-section h2 {
   font-size: 16px;
   color: #b58ed6; /* Light purple color */
   text-transform: uppercase;
   margin-bottom: 10px;
}

.model-profile-page .contact-box {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fdf8fc; /* Light background */
    border: 2px solid #b58ed6; /* Light purple border */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.model-profile-page .contact-box a {
    font-size: 18px;
    color: #6b0034; /* Deep magenta color */
    text-decoration: none;
    font-weight: bold;
}

.model-profile-page .contact-box a:hover {
    color: #9b59b6; /* Hover effect color */
    text-decoration: underline;
}


/* Model's Services Section */
.model-services {
    margin-top: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.model-services h2 {
    font-size: 18px; /* Smaller heading font */
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-bottom: 10px;
    text-transform: capitalize;
}

.service-tags {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for tags */
    gap: 10px; /* Space between tags */
    justify-content: center; /* Center-align the tags */
}

.service-tag {
    display: inline-block;
    padding: 5px 10px; /* Padding inside each tag */
    font-size: 14px; /* Text size */
    font-weight: bold;
    color: #6b0034; /* Deep magenta text */
    background-color: #fdf8fc; /* Light background */
    border: 1px solid #b58ed6; /* Light purple border */
    border-radius: 3px; /* Slightly rounded corners */
    text-transform: uppercase; /* Uppercase text */
    cursor: default;
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.service-tag:hover {
    background-color: #b58ed6; /* Light purple background on hover */
    color: #fff; /* White text on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .model-profile-page .container {
        flex-direction: column;
        gap: 20px;
    }

    .model-profile-page .left-container,
    .model-profile-page .right-container {
        flex: 1 1 100%;
    }

    .model-profile-page .model-details,
    .model-profile-page .model-pricing {
        width: 100%;
        height: auto; /* Adjust height for smaller screens */
    }
}