/*
Theme Name: Darlings of Nicole Amsterdam
Theme URI: https://darlingsofnicole.nl/
Author: Darlings of Nicole
Description: Custom Amsterdam escort agency theme with location landing pages.
Version: 1.2.1
Text Domain: darlings-of-nicole
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply Montserrat Font Globally */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color:black;
}


p {
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat font to paragraphs */
    font-size: 0.9rem; /* Set default font size */
    line-height: 1.6; /* Improve readability with proper line spacing */
    margin-bottom: 1.5em; /* Add space between paragraphs */
    color: #ddd; /* Set default text color (optional) */
    
}

/* Header */
header {
    background: #111; /* Dark background */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Logo */
.logo-image {
    width: 179px; /* Rendered width */
    height: 30px; /* Rendered height */
    max-width: 100%; /* Ensures responsiveness */
    object-fit: contain; /* Maintains aspect ratio within the specified size */
    display: block; /* Ensures proper alignment */
}

.logo a {
    display: inline-block; /* Allows for proper alignment and spacing */
}

/* Main Navigation Menu (Desktop) */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    background: #0000; /* Dark background */
}

.nav-menu li {
    position: relative; /* Needed for submenu positioning */
    display: inline-block; /* Keep main menu items inline */
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37; /* Gold hover color */
}

/* Submenu Styling (Desktop) */
.nav-menu li ul {
    display: none; /* Hide submenu by default */
    position: absolute;
    top: calc(100% + 5px); /* Position submenu slightly below the parent menu */
    left: 0;
    background: #333; /* Darker background for submenu */
    list-style: none;
    padding: 5px 0; /* Reduce overall padding for the submenu */
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-menu li:hover ul {
    display: block; /* Show submenu when parent menu item is hovered */
}

.nav-menu li ul li {
    margin: 0; /* Remove extra margin between items */
    text-align: left;
}

.nav-menu li ul li a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 5px 10px; /* Reduce padding for menu items */
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow if text is too long */
    text-overflow: ellipsis; /* Add ellipsis if text overflows */
}

.nav-menu li ul li a:hover {
    background: #444;
    color: #d4af37; /* Gold text */
}

/* Main Menu Items (Adjust Gap) */
.nav-menu > li {
    margin-right: 10px; /* Reduce spacing between main menu items */
}

.nav-menu > li:last-child {
    margin-right: 0; /* Remove margin for the last item */
}


/* Mobile Navigation */
.nav-menu.mobile {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: flex-start;
    background: #222; /* Dark background */
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%; /* Adjust width for better mobile experience */
    padding: 20px;
    box-shadow: -4px 0px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out; /* Smooth slide-in effect */
    transform: translateX(100%); /* Move off-screen initially */
}

.nav-menu.mobile.active {
    display: flex;
    transform: translateX(0); /* Slide-in effect */
    justify-content:flex-start;
}
.nav-menu.mobile.active li { 
    display:block; 
}

/* Optional Overlay for Better UX */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Menu Links */
.nav-menu.mobile a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    width: 100%;
}

.nav-menu.mobile a:hover {
    background: #444;
    color: #d4af37;
}

/* Toggle Button */
.nav-toggle {
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex; /* Show toggle on smaller screens */
    }

    .nav-menu {
        display: none; /* Hide the desktop menu */
    }
}

/* Hero Section */
.hero {
    background-image: url('https://darlingsofnicole.nl/wp-content/uploads/2025/01/darlingsofnicole-1.webp');
    position: relative;
    text-align: center;
    color: #fff;
    padding: 70px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Makes the background image fixed when scrolling */
}

@media screen and (max-width: 768px) {
    .hero,
    .single-model .hero,
    #model-hero-section.hero,
    .sitewide-page-hero {
        background-image: url('https://darlingsofnicole.nl/wp-content/uploads/2025/01/darlingsofnicole-1.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for better text visibility */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2; /* Ensures the text is above the overlay */
}

.hero h1 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Adds text shadow for better contrast */
}

.hero p {
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background: #b08c28;
    color: #fff;
    transform: scale(1.05);
}

footer .social a {
    color: #d4af37;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5rem;
}
/* Section Heading */
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37; /* Gold color for premium feel */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Short Description */
.profile-intro {
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    padding: 20px;
    background: #111;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.profile-intro strong {
    color: #d4af37;
}

/* Grid Layout */
.grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Minimum width of 300px per card */
    gap: 05px; /* Space between cards */
    justify-content: center; /* Center-align grid items */
    padding: 0 05px; /* Add padding on both sides for a consistent look */
}

/* Cards */
.card {
    background: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for better aesthetics */
    text-align: center;
    max-width: 320px; /* Limit the maximum width of each card */
    margin: 0 auto; /* Center-align the card within its container */
}

.image-container {
    width: 100%; /* Full width of the container */
    height: auto;
    object-fit: cover; /* Ensure the image fits proportionally */
    border-radius: 5px;
    
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    object-position: center; /* Centers the image within the box */
}
.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: auto;
}


/* Full-Screen Images on Mobile */
@media (max-width: 768px) {
    .grid {
        display: block; /* Ensure grid items stack vertically */
        padding: 0; /* Remove padding */
    }

    .card {
        width: 100%; /* Take the full width of the screen */
        margin: 0 auto 15px; /* Center align and add spacing */
        border: none; /* Optional: remove border if not needed */
        box-shadow: none; /* Optional: remove shadow */
    }

    .image-container {
        width: 100%;
        height: auto;
    }

    .model-image {
        width: 100vw; /* Full width of the viewport */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure image covers the container proportionally */
        display: block;
    }
}


.profile-details {
    padding: 10px;
}

.profile-details h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.profile-details p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 10px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    background: #444;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.info {
    flex: 1;
    text-align: center;
    border-right: 1px solid #555;
    padding: 5px;
}

.info:last-child {
    border-right: none;
}

.info strong {
    color: #fff;
    display: block;
}

.info span {
    color: #d4af37;
}

/* Gallery Footer */
.gallery-footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
}

.footer-text {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.more-escorts-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.more-escorts-btn:hover {
    background: #b08c28;
    color: #fff;
}

/* Book Now Section */
.book-now {
    text-align: center;
    background: #111;
    padding: 20px 20px;
    color: #fff;
}

.book-now-text {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.book-now-btn {
    display: inline-block;
    background: #d4af37; /* Gold Button */
    color: #000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.book-now-btn:hover {
    background: #b08c28; /* Darker gold on hover */
    color: #fff;
}

/* General Styling for Escort Services Section */
.escort-services {
    background: #222; /* Dark background for contrast */
    color: #ddd; /* Light text for readability */
    padding: 20px; /* General padding */
    border-radius: 8px; /* Rounded corners */
    margin: 20px auto; /* Center align with spacing */
    max-width: 900px; /* Limit the maximum width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
}

.escort-services-heading {
    text-align: center; /* Center the heading */
    font-size: 2rem; /* Default size for large screens */
    color: #d4af37; /* Gold color for elegance */
    margin-bottom: 20px; /* Spacing below heading */
    line-height: 1.2;
}

.escort-services-text {
    font-size: 1rem; /* Base text size for readability */
    line-height: 1.6; /* Proper line height for readability */
    margin-bottom: 15px; /* Spacing between paragraphs */
    text-align: justify; /* Justify text for a cleaner look */
}

/* Responsive Design */
@media (max-width: 768px) {
    .escort-services {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .escort-services-heading {
        font-size: 1.5rem; /* Smaller heading size for mobile */
    }

    .escort-services-text {
        font-size: 0.9rem; /* Adjust text size for readability */
    }
}

/* Scoped Reviews Section Styles */
.review-section .model-name, .review-section .review-model-name {
    font-size: 1.2rem;
    color: #d4af37; /* Gold color */
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Reviews Section */
.review-section {
    background: #222; /* Dark background for contrast */
    color: #fff;
    padding: 20px 20px;
}

.review-section .reviews-title {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37; /* Gold color */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-section .reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

/* Reviews Grid */
.review-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 reviews per row on desktop */
    gap: 20px; /* Space between reviews */
}

.review-section .review-card {
    background: #333; /* Dark background for review cards */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-section .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

/* Circular Model Image */
.review-section .circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular shape */
    object-fit: cover; /* Ensures image fits within the circle */
    border: 3px solid #d4af37; /* Gold border */
    margin: 0 auto 15px;
}

/* Review Text */
.review-section .review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
    font-style: italic;
}

/* Review Author */
.review-section .review-author {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

/* Responsive Design */

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) {
    .review-section .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 reviews per row */
    }

    .review-section .circular-image {
        width: 120px; /* Reduce image size */
        height: 120px;
    }
}

/* Small screens (up to 767px) */
@media (max-width: 767px) {
    .review-section .reviews-grid {
        grid-template-columns: 1fr; /* 1 review per row */
    }

    .review-section .circular-image {
        width: 100px; /* Reduce image size further */
        height: 100px;
    }

    .review-section .review-card {
        padding: 15px;
    }

    .review-section .review-text {
        font-size: 0.9rem; /* Reduce text size */
    }

    .review-section .review-author {
        font-size: 0.8rem;
    }
}


/* Payment Options Section */
.payment-options {
    background: #222;
    color: #ddd;
    text-align: center;
    padding: 20px 20px;
}

.payment-heading {
    font-size: 2rem;
    color: #d4af37; /* Gold heading for consistency */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Payment Method Icons */
.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-methods img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-link {
    display: flex;
    align-items: center;
    background: #d4af37; /* Gold color for the button */
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-link img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chat-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.6);
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    display: none; /* Hidden by default */
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
}

.chat-header {
    background: #d4af37; /* Gold header */
    color: #000;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.chat-header button {
    position: absolute;
    right: 10px;
    top: 5px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

.chat-body {
    padding: 15px;
    height: 200px;
    overflow-y: auto; /* Scrollable if content exceeds height */
    background: #f9f9f9;
}

.chat-message {
    font-size: 0.9rem;
    margin: 5px 0;
    line-height: 1.4;
}

.chat-message.bot-message {
    color: #555;
}

.chat-message a {
    color: #007bff;
    text-decoration: underline;
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .chat-window {
        width: 90%; /* Full width for smaller screens */
        bottom: 10px;
        right: 5%;
    }

    .chat-link {
        font-size: 0.9rem; /* Smaller text */
        padding: 8px 10px; /* Reduce padding */
    }

    .chat-link img {
        width: 35px; /* Reduce icon size */
        height: 35px;
    }
}


/* Footer Section */
.footer {
    background: #111;
    color: #ddd;
    padding: 20px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* About Section */
.footer-about {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-column h3 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-location-column {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 18px;
}

.footer-column .don-location-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px 18px;
}

.footer-column .don-location-links li {
    margin: 0;
}

.don-location-content {
    max-width: 1120px;
    margin: 0 auto;
    color: #ddd;
}

.don-location-content h2 {
    color: #d4af37;
    font-size: 1.45rem;
    line-height: 1.35;
    margin: 30px 0 12px;
}

.don-location-content ul,
.don-location-content ol {
    margin: 0 0 24px 24px;
    color: #ddd;
}

.don-location-content li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-column .don-location-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-column .don-location-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.booking-page {
    background: url('your-background-image.jpg') no-repeat center center/cover;
}

/* Full-Screen Booking Page */
.booking-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9; /* Light background color for full-screen */
    padding: 20px;
    box-sizing: border-box;
}

.booking-form {
    width: 100%;
    max-width: 800px; /* Limit form width for better readability */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}

.booking-form h2 {
    text-align: center;
    font-size: 2rem;
    color: #d4af37; /* Gold color */
    margin-bottom: 20px;
}

.booking-form p {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

form .form-group {
    margin-bottom: 15px;
}

form label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form textarea {
    height: 100px;
    resize: vertical;
}

form .form-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

form button {
    background-color: #d4af37;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover {
    background-color: #b08c28;
}

/* Escort Prices Section */
.escort-prices {
    background: #222;
    color: #fff;
    padding: 20px 20px;
	
}

.escort-prices .section-heading {
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #ddd;
}

.price-table th, .price-table td {
    border: 1px solid #444;
    padding: 10px 15px;
    text-align: left;
}

.price-table th {
    background: #333;
    color: #d4af37;
}

.price-table tr:nth-child(even) {
    background: #333;
}

.price-table tr:hover {
    background: #444;
}

/* Escort Profiles Section */
.profiles {
    background: #222;
    color: #fff;
    padding: 20px 20px;
}

.profiles .section-heading {
    text-align: center;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: auto;
}

.profile-details {
    padding: 15px;
}

.profile-details h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.profile-details p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 10px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    background: #444;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.info {
    flex: 1;
    text-align: center;
    border-right: 1px solid #555;
    padding: 5px;
}

.info:last-child {
    border-right: none;
}

.info strong {
    color: #fff;
    display: block;
}

.info span {
    color: #d4af37;
}

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

@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns for medium screens */
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for small screens */
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr; /* One column for mobile devices */
    }
}

/* Content Section After Profiles */
.escort-content {
    background: #f9f9f9;
    color: #333;
    padding: 20px 20px;
}

.escort-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #d4af37; /* Gold color */
}

.escort-content h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 20px;
}

.escort-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
    text-align: justify;
}

/* Services Section */
.services {
    background: #222;
    color: #ddd;
    padding: 30px 20px;
}

.services .section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.services .services-intro {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #bbb;
}

/* Service Items Grid */
.service-item {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin: 15px 0;
}

.service-item p {
    font-size: 0.9rem;
    color: #ddd;
    padding: 0 10px 20px;
}

/* Massage Services Section */
.massage-services {
    background: #222;
    color: #ddd;
    padding: 30px 20px;
}

.massage-services .section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.massage-services .services-intro {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #bbb;
}

/* Massage Items Grid */
.massage-item {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.massage-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.massage-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.massage-item h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin: 15px 0;
}

.massage-item p {
    font-size: 0.9rem;
    color: #ddd;
    padding: 0 10px 20px;
}

.card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card a:hover img {
    transform: scale(1.05);
}

.card:hover {
    transform: scale(1.05);
}



/* Page/Post Title Styling */
.page-title {
    font-size: 2.5rem;
    color: #d4af37; /* Golden color for headings */
    text-align: center;
    margin-bottom: 10px;
	  background-color:black;
}

/* Short Content Styling */
.short-content {
    font-size: 0.85rem;
    margin-bottom: 30px;
    text-align: left;
    color: #ddd;
  	background-color:black;
}

/* Gallery Section */
.model-gallery-section {
    margin: 20px 0;
    text-align: center;
		background-color:black;
}

.gallery-heading {
    font-size: 2rem;
    color: #d4af37; /* Golden heading */
    margin-bottom: 20px;
}

.model-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    background-color: #111; /* Slightly lighter black for gallery cards */
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.model-name {
    font-size: 1.2rem;
    color: #ffd700;
}

/* Additional Content Section */
.additional-content {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    text-align: left;
    color: #ddd;
    line-height: 1.6; /* Adjust line height for better readability */
	background-color:black;
}

/* Styling for list items */
.additional-content ul {
    list-style: disc; /* Use disc bullets for the list */
    margin-left: 20px; /* Indent the list */
    padding-left: 0;
    margin-bottom: 20px; /* Add spacing after the list */
}

.additional-content ul li {
    margin-bottom: 10px; /* Add gap between list items */
    font-size: 0.9rem; /* Ensure normal font size */
    font-style: normal; /* Reset any italicization */
}

/* Styling for paragraphs */
.additional-content p {
    margin-bottom: 20px; /* Add spacing between paragraphs */
    font-style: normal; /* Ensure normal font style */
    font-size: 0.9rem; /* Adjust font size if necessary */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .short-content, .additional-content {
        font-size: 0.9rem;
    }

    .gallery-heading {
        font-size: 1.5rem;
    }

    .model-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .gallery-item {
        padding: 8px;
    }

    .model-name {
        font-size: 0.9rem;
    }
}

/* =========================================================
   PREMIUM LAYOUT SYSTEM 1.2.0
========================================================= */

:root {
    --don-black: #080808;
    --don-charcoal: #111113;
    --don-panel: #18181b;
    --don-panel-soft: #202024;
    --don-gold: #d4af37;
    --don-gold-light: #f1d77d;
    --don-text: #f5f1e8;
    --don-muted: #b8b3aa;
    --don-border: rgba(212, 175, 55, 0.25);
    --don-side-space: clamp(18px, 4vw, 72px);
}

html {
    overflow-x: hidden;
}

body {
    background: var(--don-black);
    color: var(--don-text);
}

body.menu-open {
    overflow: hidden;
}

.container,
.premium-section-inner,
.premium-content-surface {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--don-side-space);
    padding-right: var(--don-side-space);
}

/* Header and organized navigation */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 1px solid var(--don-border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
}

.site-header .header-container {
    position: relative;
    width: 100%;
    min-height: 72px;
    padding: 0 clamp(18px, 3vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 22px;
}

.site-header .logo {
    flex: 0 0 auto;
}

.site-header .logo-image {
    width: 190px;
    height: 38px;
    object-fit: contain;
}

.primary-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.premium-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.premium-menu > li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
}

.premium-menu > li > a {
    display: block;
    padding: 25px 10px 24px;
    color: #fff;
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.premium-menu > li:hover > a,
.premium-menu > li:focus-within > a {
    color: var(--don-gold-light);
    background: rgba(212, 175, 55, 0.06);
}

.menu-has-children > .submenu-parent::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 3px 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.submenu-toggle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: none;
    opacity: 0;
}

.submenu-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: none;
    background: linear-gradient(145deg, #18181b, #0e0e10);
    border: 1px solid var(--don-border);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65);
}

.menu-has-children:hover > .submenu-panel,
.menu-has-children:focus-within > .submenu-panel {
    display: block;
}

.category-panel {
    min-width: 430px;
    padding: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.compact-dropdown:hover > .category-panel,
.compact-dropdown:focus-within > .category-panel {
    display: grid;
}

.submenu-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    color: #e9e5dc;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.submenu-panel a:hover,
.submenu-panel a:focus {
    color: var(--don-gold-light);
    background: rgba(212, 175, 55, 0.1);
}

.premium-menu > .has-mega-menu {
    position: static;
}

.mega-panel {
    left: 50%;
    width: min(1480px, calc(100vw - 40px));
    padding: 22px 24px 26px;
    transform: translateX(-50%);
}

.mega-menu-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
    padding: 0 5px 13px;
    border-bottom: 1px solid var(--don-border);
}

.mega-menu-heading span {
    color: var(--don-gold-light);
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.mega-menu-heading small {
    color: var(--don-muted);
    font-size: 0.75rem;
}

.mega-location-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 14px;
}

.mobile-navigation {
    display: none;
}

.site-header .nav-toggle {
    position: static;
    display: none;
    flex: 0 0 auto;
    width: 34px;
    height: 24px;
    padding: 0;
}

/* Full-width premium page sections */
.full-bleed-section,
.profiles,
.services,
.escort-reviews,
.payment-options,
.content-wrapper,
.single-post-container,
.site-main {
    width: 100%;
    max-width: none;
}

.premium-profile-section {
    padding: clamp(42px, 5vw, 76px) 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.11), transparent 32%),
        linear-gradient(180deg, #161619 0%, #0d0d0f 100%);
    border-bottom: 1px solid var(--don-border);
}

.premium-section-title {
    margin: 0 0 30px;
    color: var(--don-gold-light);
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.2;
    text-align: center;
}

.profile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 28px);
}

.profile-grid .profile-card {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    background: linear-gradient(160deg, #252529, #151517);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.34);
}

.profile-grid .image-container {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.profile-grid .model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b2b30, #141416);
}

.premium-empty-state {
    padding: 28px;
    border: 1px solid var(--don-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.premium-empty-state p {
    margin: 0;
}

.premium-content-section {
    padding: clamp(34px, 4.5vw, 70px) 0;
    background: #0b0b0c;
}

.premium-content-section-alt {
    background: linear-gradient(180deg, #121214, #080809);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-content-surface,
.premium-content-surface.additional-content {
    margin-top: 0;
    padding-top: clamp(28px, 4vw, 54px);
    padding-bottom: clamp(28px, 4vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        #121214;
    border-top: 1px solid var(--don-border);
    border-bottom: 1px solid var(--don-border);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
    color: #ddd8cf;
}

.premium-content-surface h1,
.premium-content-surface h2,
.premium-content-surface h3,
.premium-content-surface h4 {
    color: var(--don-gold-light);
    font-family: Georgia, serif;
    line-height: 1.3;
}

.premium-content-surface h1,
.premium-content-surface h2 {
    margin: 28px 0 15px;
}

.premium-content-surface h1:first-child,
.premium-content-surface h2:first-child {
    margin-top: 0;
}

.premium-content-surface p,
.premium-content-surface li {
    color: #d1ccc3;
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    line-height: 1.85;
}

.premium-content-surface ul,
.premium-content-surface ol {
    margin: 0 0 24px 24px;
}

.location-page-main .premium-section-inner,
.location-page-main .premium-content-surface {
    max-width: none;
    padding-left: clamp(12px, 1.4vw, 28px);
    padding-right: clamp(12px, 1.4vw, 28px);
}

.location-page-main .premium-content-surface .don-location-content {
    width: 100%;
    max-width: none;
    margin: 0;
}

.location-page-main .premium-content-surface .don-location-content p,
.location-page-main .premium-content-surface .don-location-content ul,
.location-page-main .premium-content-surface .don-location-content ol {
    max-width: none;
}

.location-page-main .profile-grid {
    width: 100%;
    max-width: none;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--don-gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Premium booking CTA and footer */
.premium-booking-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    padding: clamp(30px, 4vw, 54px) var(--don-side-space);
    background:
        radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.16), transparent 32%),
        linear-gradient(120deg, #8b6818 0%, #d4af37 48%, #9a751f 100%);
    color: #0a0a0a;
}

.premium-booking-copy span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-booking-copy h2 {
    margin: 0;
    color: #080808;
    font-family: Georgia, serif;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.premium-booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-action {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 18px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    color: #0b0b0b;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-action-primary {
    background: #0b0b0b;
    color: #fff;
}

.premium-footer {
    width: 100%;
    padding: 0 var(--don-side-space);
    background:
        radial-gradient(circle at 85% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
        #080809;
    color: var(--don-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.premium-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(28px, 4vw, 70px);
    padding: clamp(50px, 6vw, 88px) 0 44px;
}

.footer-brand-panel h2 {
    margin: 0 0 16px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.footer-brand-panel h2 span {
    color: var(--don-gold-light);
}

.footer-brand-panel p {
    max-width: 560px;
    color: var(--don-muted);
    line-height: 1.8;
}

.footer-license {
    display: inline-block;
    margin: 4px 0 18px;
    padding: 7px 11px;
    border: 1px solid var(--don-border);
    border-radius: 999px;
    color: var(--don-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-contact-list a,
.footer-link-panel a {
    color: #d0cbc1;
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-link-panel a:hover {
    color: var(--don-gold-light);
}

.footer-link-panel h3 {
    margin: 0 0 18px;
    color: var(--don-gold-light);
    font-family: Georgia, serif;
    font-size: 1.1rem;
}

.footer-link-panel ul,
.premium-footer .don-location-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link-panel li {
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.premium-footer-locations {
    padding: 36px 0 40px;
    border-top: 1px solid var(--don-border);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-section-heading {
    margin-bottom: 22px;
}

.footer-section-heading span {
    color: var(--don-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-section-heading h3 {
    margin: 4px 0 0;
    color: var(--don-gold-light);
    font-family: Georgia, serif;
    font-size: 1.55rem;
}

.premium-footer .don-location-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 22px;
}

.premium-footer .don-location-links a {
    color: #aaa69e;
    font-size: 0.78rem;
    text-decoration: none;
}

.premium-footer .don-location-links a:hover {
    color: var(--don-gold-light);
}

.footer-partner-strip,
.premium-footer-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.footer-partner-strip {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-partner-strip > span {
    margin-right: auto;
    color: var(--don-gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-partner-strip img {
    display: block;
    width: 88px;
    height: 31px;
    object-fit: contain;
    opacity: 0.8;
}

.premium-footer-bottom {
    justify-content: space-between;
    gap: 24px;
}

.premium-footer-bottom p {
    margin: 0;
    color: #77746e;
    font-size: 0.72rem;
}

@media (max-width: 1100px) {
    .primary-navigation {
        display: none;
    }

    .site-header .nav-toggle {
        display: flex;
    }

    .mobile-navigation {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10001;
        display: block;
        width: min(92vw, 520px);
        height: 100vh;
        padding: 0 20px 30px;
        overflow-y: auto;
        background: #101012;
        border-left: 1px solid var(--don-border);
        box-shadow: -22px 0 60px rgba(0, 0, 0, 0.65);
        transform: translateX(105%);
        transition: transform 0.28s ease;
    }

    .mobile-navigation.active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 70px;
        background: #101012;
        border-bottom: 1px solid var(--don-border);
    }

    .mobile-nav-header strong {
        color: var(--don-gold-light);
        font-family: Georgia, serif;
        font-size: 1.2rem;
    }

    .mobile-nav-close {
        padding: 4px 9px;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
    }

    .mobile-navigation .premium-menu {
        display: block;
        padding: 12px 0;
    }

    .mobile-navigation .premium-menu > li {
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .mobile-navigation .premium-menu > li > a {
        padding: 15px 42px 15px 4px;
        font-size: 0.92rem;
    }

    .mobile-navigation .submenu-toggle {
        inset: 7px 0 auto auto;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        display: block;
        opacity: 1;
    }

    .mobile-navigation .submenu-toggle::after {
        content: '+';
        color: var(--don-gold-light);
        font-size: 1.2rem;
    }

    .mobile-navigation .submenu-open > .submenu-toggle::after {
        content: '−';
    }

    .mobile-navigation .submenu-panel,
    .mobile-navigation .menu-has-children:hover > .submenu-panel,
    .mobile-navigation .menu-has-children:focus-within > .submenu-panel {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 6px 16px;
        transform: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .mobile-navigation .submenu-open > .submenu-panel,
    .mobile-navigation .submenu-open:hover > .submenu-panel,
    .mobile-navigation .submenu-open:focus-within > .submenu-panel {
        display: block;
    }

    .mobile-navigation .mega-menu-heading {
        display: block;
    }

    .mobile-navigation .mega-menu-heading small {
        display: block;
        margin-top: 4px;
    }

    .mobile-navigation .mega-location-grid,
    .mobile-navigation .category-panel {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 10px;
    }

    .mobile-navigation .submenu-panel a {
        padding: 9px 8px;
        font-size: 0.76rem;
    }

    .mobile-menu-overlay {
        z-index: 10000;
    }

    .profile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .premium-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-panel {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-header .header-container {
        min-height: 62px;
    }

    .site-header .logo-image {
        width: 165px;
        height: 34px;
    }

    .premium-booking-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .premium-booking-actions,
    .footer-action {
        width: 100%;
    }

    .footer-action {
        justify-content: center;
    }

    .profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-grid.grid {
        display: grid;
    }

    .profile-grid .profile-card {
        width: 100%;
        margin: 0;
    }

    .premium-footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand-panel {
        grid-column: auto;
    }

    .premium-footer .don-location-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mobile-navigation .mega-location-grid,
    .mobile-navigation .category-panel,
    .premium-footer .don-location-links,
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid .model-image {
        width: 100%;
    }
}

/* =========================================================
   PARTNERS (MATCHES YOUR BLACK + GOLD THEME)
   Add at END of style.css
========================================================= */

.partners-section {
    padding: 60px 0;
    background: transparent; /* keep your black body */
}

.partners-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 10px;
}

.partners-header h2 {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.partners-header p {
    margin: 0 auto;
    max-width: 820px;
    color: #ddd; /* your paragraph color */
    font-size: 0.95rem;
}

/* Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

/* Card */
.partner-card {
    background: #111; /* premium dark card */
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Logo holder */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin-bottom: 10px;
}

.partner-logo img {
    max-width: 180px;
    width: 100%;
    height: 56px; /* consistent look */
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.92;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

/* Name */
.partner-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.2px;
    margin-top: 4px;
}

/* Hover effects */
.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}

/* Empty state */
.no-partners {
    color: #ddd;
    text-align: center;
    padding: 20px 0;
}

/* CTA (match your gold button style) */
.partners-cta {
    margin-top: 40px;
    padding: 45px 0;
    background: #111;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    text-align: center;
}

.partners-cta h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partners-cta p {
    color: #ddd;
    max-width: 780px;
    margin: 0 auto 18px;
    font-size: 0.95rem;
}

/* If CTA uses your existing .btn.gold-btn, no need to restyle.
   But if you want CTA button slightly larger: */
.partners-cta .btn.gold-btn {
    padding: 12px 24px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 45px 0;
    }

    .partners-header h2 {
        font-size: 1.6rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .partner-card {
        padding: 14px 12px;
        border-radius: 10px;
    }

    .partner-logo {
        min-height: 60px;
    }

    .partner-logo img {
        height: 48px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-name {
        font-size: 0.9rem;
    }
}


/* =========================================================
   SITEWIDE HERO IMAGE - MOBILE RELIABILITY OVERRIDE
   Ensures darlingsofnicole-1.webp remains visible on phones/tablets.
   background-attachment: fixed is unreliable on several mobile browsers.
========================================================= */
@media screen and (max-width: 768px) {
    body .hero,
    body .single-model .hero,
    body #model-hero-section.hero,
    body .sitewide-page-hero {
        background-image: url('https://darlingsofnicole.nl/wp-content/uploads/2025/01/darlingsofnicole-1.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        background-color: #111 !important;
    }
}
