/* Custom Font */
@font-face {
  font-family: 'TrashHand';
  src: url('font/TrashHand.woff2') format('woff2'), /* Modern browsers */
       url('font/TrashHand.woff') format('woff'),  /* Older browsers */
       url('font/TrashHand.ttf') format('truetype'); /* Older browsers */
  font-weight: normal;
  font-style: normal;
}

:root {
    --white: #ffffff;
    --pastel-beige: #ECDACA;
    --pastel-pink: #ECCAE8;
    --pastel-pistachio: #DFECCA;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --gradient-bg: linear-gradient(135deg, var(--pastel-beige) 0%, var(--pastel-pink) 50%, var(--pastel-pistachio) 100%);
    --heading-font: 'TrashHand', 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    padding-top: 50px; /* Add space for fixed social bar */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Increased from 20px */
}

/* Social Bar */
.social-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #172032;
    z-index: 1000;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-bar .container {
    padding: 0 40px; /* Match main container padding */
}

.social-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.social-bar-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-bar-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    position: relative;
    text-decoration: none;
}

.social-bar-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.social-bar-link.instagram-link:hover {
    color: #E4405F;
}

.social-bar-link.tiktok-link:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
}

.social-bar-link.youtube-link:hover {
    color: #FF0000;
}

.social-bar-link.twitch-link:hover {
    color: #9146FF;
}

.social-bar-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Header/Hero Section */
.hero {
    min-height: 100vh; /* Full viewport height */
    background: var(--gradient-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 20px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 8s ease-out;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-bg-slide:nth-child(1) {
    background-image: url('img/background.jpg');
}

.hero-bg-slide:nth-child(2) {
    background-image: url('img/portugal.jpg');
}

.hero-bg-slide:nth-child(3) {
    background-image: url('img/mallorca.jpg');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    margin-bottom: 160px; /* Increased from 60px to 160px */
}

.logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo .tagline {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
    background-color: rgba(0,0,0,0.6);
    padding: 20px;
    color: var(--white);
    border-radius: 10px;

}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-hook {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

/* Remove old hero-text styles */
.hero-text {
    display: none;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
}

.about-highlight strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    padding: 80px 0;
    position: relative;
}

.social-section h3,
.social-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.social-section-description {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(252, 228, 236, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(252, 228, 236, 0.4);
}

.social-card.instagram {
    border-color: var(--pastel-pink);
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-card.tiktok {
    border-color: var(--pastel-beige);
}

.social-card.tiktok:hover {
    background: #000000;
    color: white;
}

.social-card.youtube {
    border-color: var(--pastel-pink);
}

.social-card.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-icon {
    font-size: 3rem;
    min-width: 60px;
}

.social-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-card:hover .social-info p {
    color: rgba(255,255,255,0.8);
}

/* Twitch Section */
.twitch-section {
    padding: 80px 0;
    background: #DFECC9;
}

.twitch-section h3,
.twitch-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.twitch-container {
    display: flex;
    justify-content: center;
}

.twitch-container .social-card {
    border-color: #9146ff;
    max-width: 400px;
    background: #9146ff;
    color: white;
    position: relative;
}

.twitch-container .social-card .social-info h4 {
    color: white;
}

.twitch-container .social-card .social-info p {
    color: rgba(255, 255, 255, 0.8);
}

.twitch-container .social-card:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-3px);
}

.twitch-container .social-card:hover .social-info h4 {
    color: white;
}

.twitch-container .social-card:hover .social-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* Streaming Schedule */
.streaming-schedule {
    margin-top: 4rem;
    text-align: center;
}

.streaming-schedule h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
}

.schedule-item .day {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.schedule-item .time {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.schedule-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #172032;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
    background: var(--white);
}

.preview-section h3,
.preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.preview-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.preview-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--pastel-beige);
}

.preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preview-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.preview-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.preview-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    min-height: calc(100vh - 200px);
    padding: 100px 0 50px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.6rem;
    color: var(--text-dark);
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.legal-content a {
    color: #9146ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pastel-pistachio) 0%, var(--pastel-beige) 100%);
    position: relative;
}

.support-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.kofi-link {
    color: #FF5E5B;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kofi-link:hover {
    color: #FF3333;
    text-decoration: underline;
}

.support-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
}

.support-benefits li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-icon {
    font-size: 1.2rem;
    min-width: 30px;
}

.support-closing {
    font-size: 1.2rem !important;
    margin-top: 2rem !important;
}

.support-closing strong {
    color: var(--text-dark);
    font-weight: 600;
}

.kofi-button-container {
    margin-top: 3rem;
}

.kofi-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #FF5E5B;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 94, 91, 0.3);
}

.kofi-button:hover {
    background: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 94, 91, 0.4);
    color: white;
}

.kofi-button i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 45px;
    }
    
    .social-bar {
        height: 45px;
    }
    
    .social-bar-links {
        gap: 0.8rem;
    }
    
    .social-bar-link {
        font-size: 1.1rem;
        padding: 6px;
    }
    
    .social-bar-text {
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 100vh; /* Keep full height on tablets */
        padding: 60px 0;
    }
    
    .hero .container {
        margin-bottom: 140px; /* Increased from 40px to 140px */
    }
    
    .scroll-indicator {
        bottom: 40px;
    }
    
    .logo-img {
        width: 220px;
        height: 220px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-hook {
        font-size: 1.2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-highlight {
        font-size: 1.2rem !important;
        margin-top: 1.5rem !important;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .twitch-section {
        padding: 60px 0;
    }

    .streaming-schedule {
        margin-top: 3rem;
    }
    
    .streaming-schedule h4 {
        font-size: 1.5rem;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
    }

    .preview-section {
        padding: 60px 0;
    }
    
    .preview-section h3 {
        font-size: 2rem;
    }
    
    .preview-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .preview-item {
        padding: 1.5rem;
    }

    .legal-page {
        padding: 80px 0 40px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 40px;
    }
    
    .social-bar {
        height: 40px;
    }
    
    .social-bar-links {
        gap: 0.6rem;
    }
    
    .social-bar-link {
        font-size: 1rem;
        padding: 5px;
    }
    
    .social-bar-text span {
        display: none;
    }
    
    .social-bar-text::after {
        content: "Folgt uns";
    }
    
    .hero {
        min-height: 100vh; /* Keep full height on mobile */
        padding: 40px 0;
    }
    
    .hero .container {
        margin-bottom: 130px; /* Increased from 30px to 130px */
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .logo-img {
        width: 220px;
        height: 220px;
    }
    
    .container {
        padding: 0 20px; /* Increased from 15px */
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .social-icon {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-content h2 {
        font-size: 1.9rem;
    }
    
    .hero-hook {
        font-size: 1.1rem;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
    }
    
    .about-highlight {
        font-size: 1.1rem !important;
        margin-top: 1.3rem !important;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-text p:last-child {
        font-size: 1rem;
    }

    .live-indicator {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    .twitch-section {
        padding: 40px 0;
    }
    
    .twitch-container .social-card {
        max-width: 100%;
    }
    
    .streaming-schedule {
        margin-top: 2.5rem;
    }
    
    .streaming-schedule h4 {
        font-size: 1.3rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .schedule-item {
        padding: 0.8rem;
    }
    
    .schedule-item .day {
        font-size: 1rem;
    }
    
    .schedule-item .time {
        font-size: 0.9rem;
    }
    
    .schedule-note {
        font-size: 0.8rem;
    }

    .preview-section {
        padding: 40px 0;
    }
    
    .preview-section h3 {
        font-size: 1.8rem;
    }
    
    .preview-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .preview-item {
        padding: 1.2rem;
    }
    
    .preview-icon {
        width: 50px;
        height: 50px;
    }
    
    .preview-icon i {
        font-size: 1.5rem;
    }
    
    .preview-content h4 {
        font-size: 1.1rem;
    }
    
    .preview-content p {
        font-size: 0.9rem;
    }

    .legal-page {
        padding: 70px 0 30px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
}

/* Apply TrashHand to all headings except legal pages */
h1, h2, h3, h4, h5, h6,
.logo .tagline,
.hero-content h2,
.social-section h3,
.twitch-section h3,
.streaming-schedule h4,
.preview-section h3,
.social-info h4,
.preview-content h4,
.footer-logo h3 {
    font-family: var(--heading-font);
}

/* Keep legal page headings with normal font */
.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
    font-family: 'Poppins', sans-serif;
}


