/*
 CSS: Promote Your Profile
 Description: Styles for the Promote Your Profile page of Elite Escorts Directory
 Version: 1.0
*/

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    overflow-x: hidden;
}

/* Animation Keyframes (same as home.css) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate="fade-in"] {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Main Layout (same as home.css) */
.main-container {
    display: flex;
    width: 100%;
    padding: 20px;
    gap: 20px;
    box-sizing: border-box;
}

.left-content {
    flex-grow: 1;
    width: 100%;
}

.right-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Compact Signup Section */
.signup-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min width from 350px */
    gap: 10px; /* Reduced from 20px */
    margin: 20px 0; /* Reduced from 40px */
}

.signup-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px; /* Slightly smaller */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* Reduced shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signup-card:hover {
    transform: translateY(-3px); /* Reduced lift */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Reduced shadow */
}

.signup-content {
    padding: 10px; /* Reduced from 20px */
    flex: 1;
}

.signup-content h3 {
    color: #1A3552;
    font-size: 16px; /* Reduced from 18px */
    margin-bottom: 10px; /* Reduced from 15px */
    text-transform: uppercase;
}

.signup-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Reduced from 20px */
}

.signup-content ul li {
    margin-bottom: 5px; /* Reduced from 10px */
    position: relative;
    padding-left: 15px; /* Reduced from 20px */
    font-size: 12px; /* Reduced from 14px */
    color: #333;
}

.signup-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #C62828;
    font-size: 12px; /* Reduced from 14px */
}

.signup-btn {
    display: inline-block;
    background: #C62828;
    color: #fff;
    padding: 6px 12px; /* Reduced from 10px 20px */
    border-radius: 4px; /* Slightly smaller */
    font-weight: bold;
    font-size: 12px; /* Added for compactness */
    text-decoration: none;
    transition: background 0.3s ease;
}

.signup-btn:hover {
    background: #FFD700;
    color: #333;
}

.signup-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.signup-image img {
    width: 120px; /* Reduced from 180px */
    height: auto;
    object-fit: contain;
}

/* Sidebar Sections (same as home.css) */
.sidebar-section {
    background: #FFFFFF;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-section.trending {
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
}

.sidebar-section h3 {
    font-size: 16px;
    color: #1A3552;
    margin-bottom: 5px;
}

.sidebar-section .date {
    font-size: 10px;
    color: #666666;
    margin-bottom: 5px;
}

.sidebar-images {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.sidebar-item {
    text-align: center;
    margin-bottom: 5px;
}

.image-box {
    width: 147px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #6A0DAD;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.sidebar-item img {
    width: 147px;
    height: 200px;
    object-fit: cover;
}

.sidebar-item p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #333333;
}

.recommended-links img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #6A0DAD;
    transition: transform 0.3s ease;
}

.recommended-links img:hover {
    transform: scale(1.05);
}

/* Content Section (same as home.css) */
.content-section {
    background: #FFFFFF;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

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

.content-container h2 {
    font-size: 28px;
    color: #1A3552;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #6A0DAD;
    padding-bottom: 10px;
}

.content-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 15px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }
    .right-sidebar {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .signup-section {
        grid-template-columns: 1fr;
    }
    .signup-card {
        flex-direction: column;
    }
    .signup-image img {
        width: 100%;
        height: auto;
    }
}