/* 
 * Pirates Park FKK Saunaclub
 * Styling für zusätzliche Seiten (Über uns, Preise, Kontakt)
 */

/* ======= GEMEINSAME STILE FÜR ALLE SEITEN ======= */
.text-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.text-link:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.info-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.info-card:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
}

.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    font-size: 1.5rem;
    color: var(--black);
}

/* ======= ÜBER UNS SEITE ======= */
.about-sections {
    margin: 4rem 0;
}

.about-section {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.about-section:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
}

.section-left {
    flex-direction: row;
}

.section-right {
    flex-direction: row-reverse;
}

.about-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section:hover .about-image img {
    transform: scale(1.05);
}

.about-content {
    flex: 0 0 60%;
    padding: 2rem 3rem;
}

.about-content h2 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.5);
}

.about-text {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Team-Bereich */
.team-section {
    margin: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(212, 175, 55, 0.1);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.5);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--silver);
    font-style: italic;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* FAQ-Bereich */
.faq-section {
    margin: 5rem 0;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-tab {
    background: transparent;
    color: var(--silver);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--gold-gradient);
    color: var(--black);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.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.open {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
}

.faq-question h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    color: var(--silver);
    padding-bottom: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

/* ======= PREISE SEITE ======= */
.price-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.price-tab {
    background: transparent;
    color: var(--silver);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.price-tab:hover,
.price-tab.active {
    background: var(--gold-gradient);
    color: var(--black);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.price-category {
    margin-bottom: 3rem;
}

.category-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--silver);
}

.price-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.price-item {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

.price-header h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin: 0;
}

.price-amount {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: right;
}

.price-duration {
    display: block;
    font-size: 0.8rem;
    color: var(--silver);
    font-weight: normal;
}

.price-description {
    color: var(--silver);
    line-height: 1.5;
}

.special-offer {
    border: 2px solid var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.special-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: translateY(-50%) rotate(45deg) translateX(40px);
    width: 150px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Spezielle Angebote */
.special-offers-section {
    margin: 5rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background-image: url('../img/backgrounds/pergament.png');
    background-size: cover;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #5A3921;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.offer-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #5A3921;
    padding-bottom: 1rem;
}

.offer-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #5A3921;
}

.offer-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #C04000;
}

.offer-content {
    z-index: 1;
    position: relative;
}

.offer-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.offer-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.offer-content ul li::before {
    content: '☠';
    position: absolute;
    left: -1.5rem;
    color: #5A3921;
}

.treasure-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: rgba(90, 57, 33, 0.2);
    transform: rotate(-15deg);
    transition: all 0.5s ease;
}

.treasure-icon.shine {
    color: #D4AF37;
    text-shadow: 0 0 20px #FFD700;
    transform: rotate(0deg) scale(1.2);
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* ======= KONTAKT SEITE ======= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-info .info-card {
    text-align: center;
}

.contact-info .info-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info .info-card p {
    color: var(--silver);
}

.contact-info .info-card a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .info-card a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.form-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-wrapper h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--silver);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--silver);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    outline: none;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
}

.checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.checkbox-wrapper a {
    color: var(--gold);
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.form-buttons {
    text-align: center;
    margin-top: 2rem;
}

.error-message {
    background-color: rgba(200, 50, 50, 0.2);
    border: 1px solid rgba(200, 50, 50, 0.5);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.error-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message i {
    font-size: 4rem;
    color: #4BB543;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--silver);
    margin-bottom: 2rem;
}

.btn-reset-form {
    background: var(--gold-gradient);
    color: var(--black);
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-form:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.form-wrapper.has-error input:invalid,
.form-wrapper.has-error textarea:invalid {
    border-color: #ff6b6b;
}

/* Kontaktformular Animationen */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.social-icon.pulse {
    animation: pulse 0.5s ease-in-out;
}

.contactForm.submitting {
    opacity: 0.7;
    pointer-events: none;
}

/* Anfahrt */
.map-section {
    margin: 5rem 0;
}

.map-container {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.directions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.direction-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.direction-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    font-size: 1.5rem;
    color: var(--black);
}

.direction-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.direction-card p {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ======= RESPONSIVE ANPASSUNGEN ======= */
@media screen and (max-width: 992px) {
    .about-section,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .about-image,
    .about-content {
        flex: 0 0 100%;
    }
    
    .about-image {
        height: 250px;
    }
    
    .contact-container {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .contact-info .info-card {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-tabs,
    .price-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    
    .faq-tab,
    .price-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .team-grid,
    .price-list,
    .offers-grid,
    .info-container,
    .directions {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .about-content,
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .about-content h2,
    .form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .price-header {
        flex-direction: column;
        text-align: center;
    }
    
    .price-amount {
        margin-top: 0.5rem;
        text-align: center;
    }
}