html {
    font-size: 18px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('/images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Optional: makes background stay on scroll */
}

/* ab hier kommen meine Sachen*/

/* General styling for the footer */
.footer {
    text-align: center;
    padding: 10px 0;
}

    /* Reduce the line height for the container */
    .footer .container {
        line-height: 1.2; /* Adjust this value to control space between lines */
    }

/* Container styles */
.section.one-columns {
    padding: 30px;
}

.section.two-columns {
    padding: 30px;
}

.section.three-columns {
    padding: 30px;
}

/* Flexbox layout */
.columns {
    display: flex;
    flex-wrap: wrap; /* Allow the columns to wrap on smaller screens */
    gap: 20px; /* Space between columns */
}

/* Each column */
.column {
    flex: 1;
    min-width: 250px; /* Minimum width before columns stack */
}

    .column.left {
        order: 1;
    }

    .column.center {
        order: 2;
    }

    .column.right {
        order: 3;
    }

/* Default: images take full width on mobile */
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* On desktop (min-width 992px) */
@media (min-width: 992px) {
    .swiper-slide img {
        width: 50% !important;
    }
}

/* Responsive behavior for mobile */
@media (max-width: 768px) {
    .columns {
        flex-direction: column; /* Stack the columns vertically */
    }

    .column {
        flex: 1 100%; /* Make each column take full width */
    }

    html {
        font-size: 18px;
    }

    .footer .container {
        display: block; /* Stack the content */
        white-space: normal; /* Allow text to wrap naturally */
        line-height: 1.2; /* Adjust this value to control space between lines */
    }

    .footer {
        padding: 20px 10px; /* Add padding on small screens */
    }
}

details {
    margin-bottom: 20px; /* Adjust this value to increase space between the details elements */
}

/* Ensure the logo doesn't overflow on small screens */
img {
    max-width: 100%;
    height: auto;
}

.container img {
    width: 100%;
    height: auto;
}

/* Social Media Stuff */
.social-buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 20px;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .social-button img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .social-button.instagram {
        background-color: #e4405f;
    }

    .social-button.whatsapp {
        background-color: #25d366;
    }

.abgerundeter-rahmen {
    border: 2px solid #555; /* dunkler Rand */
    border-radius: 15px; /* abgerundete Ecken */
    padding: 20px; /* Innenabstand */
    background-color: rgba(255, 255, 255, 0.65);
    font-family: Arial, sans-serif;
}

.abgerundeter-rahmen-podcast {
    border: 2px solid #555; /* dunkler Rand */
    border-radius: 15px; /* abgerundete Ecken */
    padding: 20px; /* Innenabstand */
    background-color: rgb( 238,173,14, 0.65);
    font-family: Arial, sans-serif;
}

.title-text {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.spotify-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

    .spotify-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (max-width: 480px) {
    .spotify-embed {
        padding-bottom: 75%; /* taller aspect ratio on small screens */
    }
}
