/* 
 * Pirates Park FKK Saunaclub
 * Angepasstes CSS für die Erotic Jobs-Seite
 */

:root {
    --gold: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #FFD700;
    --gold-gradient: linear-gradient(135deg, #B8860B, #FFD700);
    --black: #111;
    --dark-bg: #1A1A1A;
    --silver: #C0C0C0;
}

/* Allgemeine Stile für die Erotic Jobs-Seite */
.erotic-jobs-page {
    margin-bottom: 50px;
}

.erotic-jobs-page h1, 
.erotic-jobs-page h2, 
.erotic-jobs-page h3, 
.erotic-jobs-page h4, 
.erotic-jobs-page h5, 
.erotic-jobs-page h6 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.5);
}

/* Hero-Bereich */
.hero-section {
    position: relative;
    padding: 5rem 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    background-image: url('../img/backgrounds/jobs-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--silver);
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pirate Buttons */
.pirate-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Cinzel', serif;
}

.pirate-btn-light {
    background-color: var(--silver);
    color: var(--black);
}

.pirate-btn-light:hover {
    background-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--black);
    text-decoration: none;
}

.pirate-btn-outline {
    background-color: transparent;
    color: var(--silver);
    border: 1px solid var(--gold);
}

.pirate-btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.pirate-btn-gold {
    background: var(--gold-gradient);
    color: var(--black);
}

.pirate-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    color: var(--black);
    text-decoration: none;
}

/* Vorteile-Bereich */
.benefits-section {
    padding: 4rem 0;
    /*background-color: rgba(0, 0, 0, 0.6);*/
    position: relative;
}

.benefits-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/backgrounds/benefits-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.benefit-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--silver);
    line-height: 1.6;
}

/* Job-Listings */
.job-listings-section {
    padding: 4rem 0;
    /*background-color: rgba(0, 0, 0, 0.8);*/
}

.job-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.job-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.1) 50%);
    z-index: 0;
}

.job-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-badge {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    color: var(--silver);
    display: inline-flex;
    align-items: center;
}

.job-badge i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.job-description {
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

/* Modal-Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 800px;
    pointer-events: none;
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--gold);
    border-radius: 10px;
    outline: 0;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--gold-gradient);
}

.modal-title {
    margin: 0;
    color: var(--black) !important; /* Titel im Modal schwarz machen */
    font-weight: bold;
}

/* Job-Bild im Modal */
.job-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
}

.job-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    padding: 0;
    margin: -1rem -1rem -1rem auto;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2rem;
    color: var(--silver);
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(0, 0, 0, 0.3);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.detail-title {
    color: var(--gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content {
    color: var(--silver);
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-footer > * {
    margin: 0.25rem;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/backgrounds/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.testimonial-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #555;
    margin-right: 2px;
}

.testimonial-rating i.active {
    color: var(--gold);
}

.testimonial-text {
    color: var(--silver);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.author-position {
    color: var(--silver);
    font-size: 0.9rem;
    font-style: italic;
}

/* FAQ-Bereich */
.faq-section {
    padding: 4rem 0;
    /*background-color: rgba(0, 0, 0, 0.8);*/
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.faq-question {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    color: var(--gold);
    margin: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-toggle {
    color: var(--gold);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: var(--silver);
    padding: 0 1.2rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 2000px !important; /* Höherer Wert für lange Inhalte */
    padding: 0 1.2rem 1.2rem 1.2rem;
}

/* Bewerbungsformular */
.application-form-section {
    padding: 4rem 0;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    position: relative;
}

.application-form-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('../img/backgrounds/form-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.application-form {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.selected-job-info {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: none;
}

.selected-job-info.active {
    display: block;
}

.selected-job-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.reset-selection {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--silver);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.privacy-consent input {
    margin-top: 0.3rem;
    width: auto;
}

.privacy-consent label {
    color: var(--silver);
    font-weight: normal;
    margin-bottom: 0;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Datei-Upload-Bereich */
.upload-area {
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.upload-area .icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.upload-area h4 {
    margin-bottom: 0.5rem;
}

.upload-area p {
    color: var(--silver);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.file-input {
    display: none;
}

.uploaded-file {
    display: none;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 0.8rem;
    margin-top: 1rem;
}

.uploaded-file.active {
    display: flex;
}

.file-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.file-info {
    flex: 1;
}

.file-name {
    color: var(--silver);
    font-weight: bold;
}

.file-size {
    color: var(--silver);
    font-size: 0.8rem;
    opacity: 0.7;
}

.file-remove {
    color: #dc3545;
    cursor: pointer;
    padding: 0.3rem;
}

.file-remove:hover {
    color: #ff5a67;
}

/* Erfolgsmeldung */
.success-message,
.error-message {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-message {
    border: 1px solid #28a745;
}

.error-message {
    border: 1px solid #dc3545;
}

.success-message i,
.error-message i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message i {
    color: #28a745;
}

.error-message i {
    color: #dc3545;
}

.success-message h4,
.error-message h4 {
    margin-bottom: 1rem;
}

/* Zusätzliche Bootstrap-Klassen-Überschreibungen */
.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Fix für Bootstrap-Row und Col auf dieser Seite */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6, .col-md-4, .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-dialog {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 1rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        max-height: 60vh;
    }
}
.modal-content {
	background:rgb(0,0,0,0.7); }