/* Erotik Jobs Hero */
.erotik-jobs-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.erotik-jobs-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.erotik-jobs-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.erotik-jobs-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 2;
}

.erotik-jobs-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.erotik-jobs-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #1a0020, #000);
    position: relative;
}

/* Erotik Jobs Styles */
.erotik-jobs-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #000, #1a0020);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.jobs-intro {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.jobs-description p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.room-details,
.additional-services {
    margin-top: 2rem;
}

.room-details h2,
.additional-services h2 {
    color: var(--gold-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.room-details ul,
.additional-services ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.room-details ul li,
.additional-services ul li {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.room-details ul li::before,
.additional-services ul li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Form Styles */
.erotik-jobs-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: bold;
}

.form-group label small {
    color: var(--text-muted);
    font-weight: normal;
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.form-group input[type="file"] {
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.image-uploads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.privacy-consent {
    grid-column: 1 / -1;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(228, 204, 127, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .erotik-jobs-section {
        padding: 3rem 1rem;
    }

    .erotik-jobs-form {
        padding: 1.5rem;
    }

    .room-details ul,
    .additional-services ul {
        grid-template-columns: 1fr;
    }

    .image-uploads {
        grid-template-columns: 1fr;
    }
}

.image-preview {
    margin-top: 1rem;
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.1);
}