/*CSS/main.css*/

/* --------------------------------------------
   Reset and Base Styles
-------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

body{
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
}

:root {
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 32px;
  --space-xl: 64px;
  --space-xxl: 128px;
  --bg-color: #454544;
  --grün-color: rgba(160, 213, 1);
  --text-color: #fff;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-m);
    color: var(--grün-color);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-s);
    color: var(--text-color);
}

h3 {
    font-size: 4rem;
    margin-bottom: var(--space-s);
    color:var(--text-color);
    font-family: "Bad Script", cursive;
}
p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

a {
    color: var(--grün-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

/*wiederholung*/
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.PIC {
    border-radius: var(--space-l);
}

button {
    margin: var(--space-m) 0 var(--space-m) 0;
    padding: var(--space-s) 25px;
    border-radius: var(--space-s);
    background-color: var(--grün-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* --------------------------------------------
   Layout  
-------------------------------------------- */

.logo {
    max-width: 80%;
    height: auto;
    display: block;
    margin: auto 0;
}

.content {
    margin-top: 40px;
    text-align: center;
    margin: auto 0 50px 0;
}

.icons {
    display: flex;
    gap: 25px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.icons img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.icons a:hover {
    transform: translateY(-8px) scale(1.08);
}

.icons a:nth-child(2):hover {
    background: #FF0000; /* YouTube */
}

.icons a:nth-child(3):hover {
    background: #000000; /* TikTok */
}

.Kontakt {
    text-align: center;
    margin: 0 0 25px 0;
}

.Intro {
    text-align: left;
    margin: 0 10% 0 10%;
}

#map{
    width:50%;
    height:50vh;
    border: 2px solid var(--grün-color);
    border-radius: 20px;
    margin-top: 20px;
}

.swiper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-slide {
    width: 320px;
    height: 350px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {

    width: auto;
    height: 350px;

    object-fit: cover;

    border-radius: 25px;

}