/* STyles */
:root {
    --primary-brown: #A67C52;
    --primary-light: #C9A882;
    --primary-dark: #8B6F47;
    --terracotta: #C17A5C;
    --terracotta-light: #D89B84;
    --rust: #D4896B;
    --beige: #E8D5C4;
    --beige-light: #F5EBE0;
    --cream: #FAF6F1;
    --warm-gray: #9B8B7E;
    --dark: #4A3F35;
    --shadow: rgba(75, 63, 53, 0.1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--cream) 100%);
    color: var(--dark);
    overflow-x: hidden;
}

    /* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-image: url(../images/titelbild.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero::before {
    display: none;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    z-index: 100;
}

.heart-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.heart-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--pink-dark);
}

.platform-links {
    display: flex;
    gap: 1rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.platform-icon svg {
    width: 24px;
    height: 24px;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    animation: fadeInUp 1s ease;
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    .hero-illustration {
    width: 500px;
    height: 150px;
    background: rgba(255,255,255,.5) url(../images/logo-transparent.png) no-repeat 0 0;
    border-radius: 30px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
}
.hero-illustration .logo {
    display: none;
}


.hero-illustration::before {
    display: none;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    /* background: linear-gradient(135deg, var(--pink-dark) 0%, var(--mint-dark) 100%); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: -2px;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Tabs Section */
.tabs-section {
    margin-bottom: 4rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab {
    padding: 0.8rem 2rem;
    background: white;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.tab.active {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--primary-brown) 100%);
    color: white;
    transform: scale(1.05);
}

.tab-content {
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.member-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.member-image {
    width: 330px;
    height: 440px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    box-shadow: 0 8px 30px var(--shadow);
    
    overflow: hidden;
    img {
        object-fit: cover;
        background-size: 100%;
        width: 100%;
        height: 100%;
    }

}

.member-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);

}

.member-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--terracotta-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 1.4em;
    height: 1.4em;
    
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px var(--shadow);
}

/* Episode Section */
.episode-section {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.season-card-wrapper-outer {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 1em;
    margin-bottom: 3em;
}

.season-card-wrapper {
    perspective: 1000px;
}

.season-card {
    position: relative;
    width: 500px;
    height: 240px;
    margin: 0 auto;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.season-card-wrapper:hover .season-card {
    transform: rotateY(180deg);
}

.season-front, .season-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
}

.season-front {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--primary-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-front h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.season-back {
    background: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5em;
}

.featured-episode {
    margin-bottom: 3rem;
}

.episode-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
}

.episode-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.episode-player {
    width: 100%;
    margin-top: 1rem;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.platform-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.hashtag {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    display: inline-block;
}

.season-back .hashtag {
    background: linear-gradient(135deg, var(--beige) 0%, var(--terracotta-light) 100%);
}

/* Episodes Grid */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.episode-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.episode-box:hover {
    transform: translateY(-5px);
}

.episode-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.episode-box .platform-buttons {
    margin-top: 1rem;
}

/* Question Form */
.question-section {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 4rem;
}

.question-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.question-form {
    max-width: 600px;
    margin: 0 auto;
}

.question-input {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--beige);
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.question-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--primary-brown) 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* Footer Icons */
.footer-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-platform {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-platform:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Cat Easter Egg */
.cat-trigger {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.cat-trigger:hover {
    transform: scale(1.1);
}

.cat-trigger svg {
    width: 45px;
    height: 45px;
}

.cat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.cat-overlay.active {
    display: flex;
}

.cat-content {
    text-align: center;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cat-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
}

.spinning-cat {
    font-size: 150px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.close-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-overlay:hover {
    transform: rotate(90deg);
}

        
/* Footer Icons */
.footer-platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-platform {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-platform:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 4rem;
}

.schedule-card {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--primary-brown) 100%);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    color: white;
}

.schedule-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.schedule-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.schedule-card p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 4rem;
}

.newsletter-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--pink-light);
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--pink);
}

.newsletter-form .submit-btn {
    flex: 0 0 auto;
    min-width: 150px;
    margin-top: 0;
}

/* Community Section */
.community-section {
    margin-bottom: 4rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.community-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow);
}

.community-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.community-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Equipment Section */
.equipment-section {
    margin-bottom: 4rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.equipment-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.equipment-card ul {
    list-style: none;
    padding: 0;
}

.equipment-card li {
    padding: 0.6rem 0;
    color: var(--gray);
    border-bottom: 1px solid var(--beige);
}

.equipment-card li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: white;
    border-radius: 30px 30px 0 0;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 20px var(--shadow);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.footer-section a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--beige);
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-illustration {
        width: 320px;
        height: 80px;
    }

    .logo {
        font-size: 3rem;
    }

    .member-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-image {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .hero-nav {
        padding: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .submit-btn {
        width: 100%;
    }

    .community-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .schedule-card {
        padding: 2rem;
    }

    .schedule-card h3 {
        font-size: 1.5rem;
    }
}