/* 
 * Deutschland Entdecken
 * Retro-Stil-Datei
 */

/* Retro-Farbpalette 
 * Primärfarbe: #E54B4B (Retro-Rot)
 * Sekundärfarbe: #FFA987 (Pastell-Orange)
 * Akzentfarbe 1: #7FC6A4 (Vintage-Grün)
 * Akzentfarbe 2: #5D737E (Rauchblau)
 * Neutral: #F7F7F2 (Off-White)
 */

body {
    background-color: #F7F7F2;
    color: #333;
    font-family: 'Courier New', monospace;
}

/* Retro-Typografie */
.retro-headline {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    letter-spacing: -1px;
    color: #E54B4B;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.retro-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #E54B4B,
        #E54B4B 10px,
        transparent 10px,
        transparent 20px
    );
}

.retro-subheadline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: 2.4rem;
    color: #5D737E;
    margin-bottom: 3rem;
}

/* Retro-Abschnitt-Header */
.retro-section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.retro-section-header h2 {
    font-family: 'Courier New', monospace;
    font-size: 3.6rem;
    color: #E54B4B;
    display: inline-block;
    padding: 0 2rem;
    background-color: inherit;
    position: relative;
    z-index: 2;
}

.retro-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFA987;
    z-index: 1;
    transform: translateY(-50%);
}

/* Retro-Stil-Buttons */
.retro-button {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #E54B4B;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 0;
    box-shadow: 5px 5px 0 #5D737E;
    transition: all 0.3s ease;
}

.retro-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #5D737E;
    background-color: #d63b3b;
    color: white;
}

/* Retro-Karten */
.retro-card {
    background-color: white;
    border: 2px solid #333;
    border-radius: 0;
    box-shadow: 10px 10px 0 #FFA987;
    transition: all 0.3s ease;
    overflow: hidden;
}

.retro-card:hover {
    transform: translate(5px, 5px);
    box-shadow: 5px 5px 0 #FFA987;
}

.retro-card .retro-card-header {
    background-color: #E54B4B;
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

.retro-card .retro-card-content {
    padding: 2rem;
}

/* Retro-Navigationsleiste */
.retro-nav {
    background-color: #F7F7F2;
    border-bottom: 4px solid #E54B4B;
}

.retro-nav a {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
}

.retro-nav a:hover,
.retro-nav a.active {
    color: #E54B4B;
}

/* Retro-Stil-Form */
.retro-form input,
.retro-form textarea,
.retro-form select {
    background-color: #F7F7F2;
    border: 2px solid #333;
    border-radius: 0;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.retro-form input:focus,
.retro-form textarea:focus,
.retro-form select:focus {
    border-color: #E54B4B;
    box-shadow: 5px 5px 0 #FFA987;
    outline: none;
}

.retro-form label {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #5D737E;
    margin-bottom: 1rem;
}

.retro-form button {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #E54B4B;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 0;
    box-shadow: 5px 5px 0 #5D737E;
    transition: all 0.3s ease;
}

.retro-form button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #5D737E;
    background-color: #d63b3b;
}

/* Retro-Rahmen und Trennlinien */
.retro-border {
    border: 3px solid #333;
    padding: 2rem;
    position: relative;
}

.retro-border:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed #E54B4B;
    pointer-events: none;
}

.retro-divider {
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #E54B4B,
        #E54B4B 10px,
        #F7F7F2 10px,
        #F7F7F2 20px
    );
    margin: 4rem 0;
}

/* Retro-Icons und Badges */
.retro-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #7FC6A4;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 2.4rem;
    margin-right: 1.5rem;
}

.retro-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #FFA987;
    color: #333;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: 0;
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Retro-Bildeffekte */
.retro-image {
    border: 10px solid white;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.retro-image:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Retro-Zitatblöcke */
.retro-quote {
    position: relative;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 2rem;
    color: #5D737E;
    padding: 3rem;
    margin: 4rem 0;
    background-color: #F7F7F2;
    border-left: 4px solid #E54B4B;
}

.retro-quote:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 6rem;
    color: rgba(229, 75, 75, 0.2);
    line-height: 1;
}

.retro-quote-author {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-size: 1.6rem;
    color: #333;
    text-align: right;
}

/* Retro-Animationen */
@keyframes retro-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.retro-pulse {
    animation: retro-pulse 2s infinite;
}

@keyframes retro-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.retro-rotate {
    animation: retro-rotate 3s infinite;
}

/* Retro-Preisgestaltung und Funktionsblöcke */
.retro-feature {
    text-align: center;
    padding: 3rem;
    transition: all 0.3s ease;
}

.retro-feature:hover {
    transform: translateY(-10px);
}

.retro-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #7FC6A4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.6rem;
}

.retro-feature-title {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 2.4rem;
    color: #E54B4B;
    margin-bottom: 1.5rem;
}

/* Retro-Footer */
.retro-footer {
    background-color: #333;
    color: #F7F7F2;
    font-family: 'Courier New', monospace;
    padding: 6rem 0 2rem;
}

.retro-footer a {
    color: #FFA987;
    transition: all 0.3s ease;
}

.retro-footer a:hover {
    color: #E54B4B;
}

/* Retro-Responsive-Anpassungen */
@media (max-width: 768px) {
    .retro-button {
        padding: 1.2rem 2.4rem;
    }

    .retro-headline {
        font-size: 3.6rem;
    }

    .retro-subheadline {
        font-size: 2rem;
    }
}
