/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {

    color: #ac0202;
}

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

/* Banner Section */
.banner {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    text-align: center;
}

.banner img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    max-height: 500px;
    object-fit: cover;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    color: #7f048c;
}

.navigation {
    position: relative;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-btn {
    padding: 10px 20px;
    background-color: #7f048c;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.nav-btn a {
    color: #000;
    text-decoration: none;
}

.search-bar {
    display: flex;
}

.search-bar input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #7f048c;
    color: #000;
    border: none;
	font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: #7f048c;
    text-align: center;
    padding: 60px 0;
	margin: 0;
    font-size: 2em;
	font-weight: 700;
	font-family: serif;
	font-style: italic;
	color: #000;
	text-shadow: 0 2px 4px #f2b10a;
}


/* Categories Section */
.categories {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.category-accordion {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-item {
    position: relative;
    min-width: 150px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.category-summary {
    padding: 12px 20px;
    background-color: #7f048c;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.category-summary::-webkit-details-marker {
    display: none;
}

.arrow {
    transition: transform 0.3s ease;
}

.category-item[open] .arrow {
    transform: rotate(180deg);
}

.category-list {
    list-style: none;
    padding: 10px;
    margin: 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    animation: fadeIn 0.3s ease;
}

.category-list li {
    margin: 5px 0;
}

.category-list a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.category-list a:hover {
    background-color: #f4f4f4;
    border-radius: 4px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Content */
.main-content {
    margin: 40px 0;
}

.profiles-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.profile-card {
    display: flex;
    background: linear-gradient(90deg, rgb(139 17 2) 0%, rgb(255 11 76) 50%, rgb(209 23 0) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-image {
    flex: 1;
}

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

.profile-details {
    flex: 1;
    padding: 15px;
    text-align: left;
}

.profile-details h3 {
    margin: 10px 0;
    color: #fff;
}

.profile-details p {
    margin: 5px 0;
}

.profile-details button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Content Section */
.content-section {
    background-color: #fff;
    padding: 40px 0;
}

.content-section .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.content-box {
    flex: 1;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

.content-box h1, .content-box h2, .content-box h3, .content-box h4, .content-box h5 {
    color: #7f048c;
}

.content-text {
    margin-bottom: 15px;
}

.read-more {
    padding: 10px 20px;
    background-color: #7f048c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.video-box {
    flex: 1;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

.video-box iframe {
    max-width: 100%;
}

/* Additional Content Section */
.additional-content-section {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.additional-content-section .content-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Extra Content Section */
.extra-content-section {
    background-color: #fff;
    padding: 40px 0;
}

.extra-content-section .content-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Table Section */
.table-section {
    padding: 20px 0;
    background-color: #f4f4f4;
}

.escorts-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.escorts-table th, .escorts-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.escorts-table th {
    background-color: #7f048c;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    color: #7f048c;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.faq-item summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
}

.faq-item p {
    padding: 0 15px 15px;
    margin: 0;
}

/* Tags Section */
.tags-section {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.tags-section h2 {
    text-align: center;
    color: #7f048c;
    margin-bottom: 20px;
}

.tags-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-btn {
    padding: 10px 20px;
    background-color: #7f048c;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Page Links Section */
.page-links-section {
    padding: 20px 0;
    background-color: #f4f4f4;
}

.page-links-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.link-btn {
    margin: 5px;
    padding: 10px 20px;
    background-color: #7f048c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.link-btn a {
    color: #fff;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 10px 0 0;
    padding: 0;
}

.footer li {
    margin: 0 10px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .profile-card {
        flex-direction: column;
    }

    .profile-image img {
        height: auto;
    }

    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        z-index: 1000;
        margin-top: 20px;
    }

    .nav-menu button {
        width: 100%;
        margin: 5px 0;
    }

    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .search-bar {
        margin-top: 20px;
        width: 100%;
    }

    .category-accordion {
        flex-direction: column;
        align-items: stretch;
    }

    .category-item {
        margin-bottom: 10px;
        min-width: auto;
    }

    .content-section .container {
        flex-direction: column;
    }
}