/* Erotik Jobs Hero */
.erotik-jobs-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-image:hover {
    transform: scale(1.1);
}

/* Toast-Benachrichtigungen */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 1000;
    max-width: 350px;
    border-left: 5px solid var(--gold);
}

.toast-success {
    border-left-color: #4CAF50;
}

.toast-error {
    border-left-color: #f44336;
}

.toast-icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.toast-message {
    flex-grow: 1;
    font-size: 0.95rem;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.toast-close:hover {
    color: white;
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .erotik-jobs-section {
        padding: 4rem 1.5rem;
    }
    
    .jobs-intro {
        padding: 2rem;
    }
    
    .erotik-jobs-form {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .erotik-jobs-section {
        padding: 3rem 1rem;
    }
    
    .erotik-jobs-hero .neon-text {
        font-size: 3.5rem;
    }
    
    .erotik-jobs-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .erotik-jobs-form {
        padding: 1.5rem;
    }

    .room-details ul,
    .additional-services ul {
        grid-template-columns: 1fr;
    }

    .image-uploads {
        grid-template-columns: 1fr;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .erotik-jobs-hero .neon-text {
        font-size: 2.5rem;
    }
    
    .privacy-consent {
        padding: 1rem;
    }
    
    .privacy-consent label {
        font-size: 0.85rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 1rem;
    }
}

.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;
    filter: brightness(0.8);
    transition: transform 20s ease;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.erotik-jobs-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 2;
}

.erotik-jobs-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
}

.erotik-jobs-hero .neon-text {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold), 0 0 40px var(--purple-accent);
    letter-spacing: 3px;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold), 0 0 30px var(--gold), 0 0 40px var(--purple-accent);
    }
    to {
        text-shadow: 0 0 15px var(--gold), 0 0 25px var(--gold), 0 0 35px var(--gold), 0 0 45px var(--purple-accent), 0 0 55px var(--gold);
    }
}

.erotik-jobs-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--chrome);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

/* Erotik Jobs Section Styles */
.erotik-jobs-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #000, #1a0020);
    min-height: 100vh;
    position: relative;
}

.erotik-jobs-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.3"/></svg>') repeat;
    pointer-events: none;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent), var(--gold));
    border-radius: 3px;
}

.jobs-intro {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.jobs-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.jobs-intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--purple-accent), var(--gold));
    border-radius: 15px 15px 0 0;
}

.jobs-description p {
    color: var(--chrome);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.room-details,
.additional-services {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.room-details h2,
.additional-services h2 {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
}

.room-details ul,
.additional-services ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.room-details ul li,
.additional-services ul li {
    color: var(--chrome);
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.room-details ul li:hover,
.additional-services ul li:hover {
    transform: translateX(10px);
    color: #fff;
}

.room-details ul li::before,
.additional-services ul li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 0.8rem;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.room-details ul li:hover::before,
.additional-services ul li:hover::before {
    background: var(--gold);
    color: black;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Form Styles */
.erotik-jobs-form {
    background: rgba(20, 20, 20, 0.7);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.erotik-jobs-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--purple-accent), var(--gold), var(--purple-accent));
    border-radius: 15px 15px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--chrome);
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-group:hover label {
    color: var(--gold);
}

.form-group label small {
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.form-group input[type="file"] {
    background: transparent;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-group input[type="checkbox"] {
    margin-right: 0.8rem;
    width: auto;
    height: 18px;
    width: 18px;
}

.image-uploads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-consent {
    grid-column: 1 / -1;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.privacy-consent input[type="checkbox"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.privacy-consent label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.submit-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--purple-accent), var(--gold));
    transition: all 0.6s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.submit-btn:hover:before {
    left: 0;
}

/* Bildvorschau-Bereich */
.image-preview {
    margin-top: 1rem;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.image-preview:hover {
    border-color: var(--purple-accent);
    box-shadow: 0 0 15px rgba(123, 104, 238, 0.3);
    transform: scale(1.02);
}
/* Transgender-spezifische Styles für das Bewerbungsformular */

/* Transgender-Infobereich */
.trans-support-info {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

/* Einheitliches Styling für die Überschrift */
.trans-support-info h3 {
    color: var(--gold);
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* Icon-Stil anpassen */
.trans-support-info h3:before {
    content: '♥';
    margin-right: 10px;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Text-Stil anpassen */
.trans-support-info p {
    color: var(--chrome);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* WhatsApp-Link anpassen */
.trans-support-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.trans-support-info a:hover {
    color: var(--chrome);
}

/* Trans-Info Formular Bereich */
.trans-info-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.trans-info-section label {
    color: var(--chrome) !important;
}

.trans-info-section textarea {
    border-color: rgba(212, 175, 55, 0.2);
}

.trans-info-section textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Hover-Effekt für das Trans-Info-Feld */
.trans-info-section:hover label {
    color: var(--gold) !important;
}

.trans-info-section {
    background: rgba(123, 104, 238, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid rgba(123, 104, 238, 0.3);
    transition: all 0.3s ease;
}

.trans-info-section label {
    color: #7b68ee !important;
}

.trans-info-section textarea {
    border-color: rgba(123, 104, 238, 0.3);
}

.trans-info-section textarea:focus {
    border-color: #7b68ee;
    box-shadow: 0 0 15px rgba(123, 104, 238, 0.3);
}

/* Fix für die blauen Pfeile im Select-Element */
select[name="category"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    color: white; /* Sicherstellen, dass der Text weiß ist */
}

/* Styling für die Select-Optionen */
select[name="category"] option {
    background-color: #121212; /* Dunkler Hintergrund */
    color: white; /* Weißer Text */
    padding: 10px; /* Mehr Padding für bessere Lesbarkeit */
}

/* Fokus-Stil für das Select-Element beibehalten */
select[name="category"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Hover-Stil für die Optionen */
select[name="category"] option:hover,
select[name="category"] option:focus,
select[name="category"] option:active,
select[name="category"] option:checked {
    background-color: var(--gold);
    color: #000;
}

/* Firefox-spezifischer Stil, da Firefox anders mit Optionen umgeht */
@-moz-document url-prefix() {
    select[name="category"] {
        color: white;
        background-color: rgba(0, 0, 0, 0.3);
    }
    
    select[name="category"] option {
        background-color: #121212;
        color: white;
    }
}

/* Für Webkit-Browser (Chrome, Safari) */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select[name="category"] option {
        background-color: #121212;
    }
}

/* Für Edge */
@supports (-ms-ime-align:auto) {
    select[name="category"] option {
        background-color: #121212;
        color: white;
    }
}

/* Animation für den WhatsApp-Button */
@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.trans-support-info a {
    animation: pulseWhatsApp 2s infinite;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .trans-support-info {
        padding: 15px;
    }
    
    .trans-support-info h3 {
        font-size: 1.1rem;
    }
    
    .trans-info-section {
        padding: 15px;
    }
}