/* Custom Styles */
body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
}

.stage {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/stage3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-content {
    text-align: center;
    color: white;
}

.stage-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
    .stage-content h1 {
        font-size: 2.5rem;
    }
}

.stage-content hr {
    width: 100px;
    height: 3px;
    background-color: white;
    border: none;
    margin: 2rem auto;
}

.stage-content .lead {
    font-size: 1.5rem;
    font-weight: 200;
}

/* Ribbon Notice */
.ribbon-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.ribbon-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.ribbon-content {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border-radius: 5px;
    text-align: center;
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ribbon-notice {
        bottom: 10px;
        right: 10px;
    }
    
    .ribbon-content {
        padding: 10px 15px;
        font-size: 0.8rem;
        min-width: 180px;
    }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-arrow span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -10px auto;
    animation: scrollDown 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Hide scroll indicator on mobile for better UX */
@media (max-width: 768px) {
    .scroll-down-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 25px;
        height: 40px;
    }
    
    .scroll-arrow span {
        width: 15px;
        height: 15px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
}

/* Spacing above "Über mich" headline */
#about h2 {
    margin-top: 3rem;
}

/* Dog Section Styling */
.dog-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dog-achievements {
    flex-grow: 1;
}

.dog-achievements ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.dog-achievements .badge {
    min-width: 50px;
    text-align: center;
    font-size: 0.75rem;
}

.dog-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* All images (except stage) should be 16:9 */
img:not(.stage img):not(.stage-content img) {
    /* Mobile optimizations for dog section */
    @media (max-width: 768px) {
        .dog-info {
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .dog-achievements .badge {
            font-size: 0.7rem;
            min-width: 45px;
        }
    }

    section {
        padding: 80px 0;
    }

    h2 {
        font-weight: 600;
        margin-bottom: 2rem;
    }

    .img-fluid {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .small {
        font-size: 0.875rem;
        color: #6c757d;
        display: block;
        margin-top: 0.5rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .stage-content h1 {
            font-size: 2.5rem;
        }

        .stage-content .lead {
            font-size: 1.2rem;
        }

        section {
            padding: 40px 0;
        }

        font-size: 1.5rem;
        font-weight: 600;
    }
}
.nav-link {
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* Fat Footer Styling */
.fat-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #ecf0f1;
    padding: 60px 0 20px 0;
    border-top: 4px solid #3498db;
}

.footer-section {
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 4px solid #198754;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.footer-title {
    color: #198754;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #198754;
}

.footer-content {
    line-height: 1.6;
}

.footer-content p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-content strong {
    color: #ecf0f1;
    font-weight: 600;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #198754 0%, #2a704f 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 8px 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2a704f 0%, #198754 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

.contact-buttons {
    margin-top: 1.5rem;
}

.footer-content a {
    color: #5dade2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-content a:hover {
    color: #85c1e9;
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.copyright {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

.source-link {
    margin: 0;
}

.source-link a {
    color: #95a5a6;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.source-link a:hover {
    color: #bdc3c7;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .fat-footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 15px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 5px;
    }
}

/* About Section Styling */
.about-image-card {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
    /* Height defined above in general img rules */
}

.about-text-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-highlight h4 {
    font-weight: 600;
}

.about-text-highlight .lead {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Mobile optimizations for about section */
@media (max-width: 768px) {
    .about-image-card {
        margin-bottom: 1rem;
    }
    
    .about-text-highlight {
        padding: 1.5rem;
        text-align: center;
    }
    
    .about-text-highlight h4 {
        font-size: 1.3rem;
    }
    
    .about-text-highlight .lead {
        font-size: 1rem;
    }
}
