@font-face {
    font-family: Serdan;
    src: url(./fonts/Super\ Sedan.ttf);
}

html {
    scroll-behavior: smooth;
}

/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #242424;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.container h1 {
    font-size: 2.5rem;
    font-family: Serdan;
}

/* Header */
header {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: #ECF0F1;
    z-index: 9999;
    transform: skewY(1deg);
    margin-top: 25px;
}

/* Navbar */
header .nav {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
    top: 0;
    z-index: 1000;
    padding: 20px 50px;
    width: 100%;
    box-sizing: border-box; 
}

/* Anpassung der Navigation */
header .nav ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center; 
}

/* Styling der Links */
header .nav ul li {
    font-weight: bold;
}

/* Logo oder Überschrift */
header .nav h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    margin: 0;
}

/* Styling für Links im Header */
header .nav ul li a {
    color: #ECF0F1;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

header .nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Verhindert horizontales Scrollen */
body {
    overflow-x: hidden; 
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: #242424;
    color: #ffffff;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-style: italic;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #242424;
    color: white;
    background-image: url('./media/hg4.jpg');
    background-size: contain;
    background-position: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid white; 
    outline: 2px solid white;
    outline-offset: -10px;
}

.about .content {
    width: 55%;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color:  linear-gradient(135deg, #34495E, #E67E22);
}

.about p {
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #242424;
    color: white;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    color: white;
}

.services .card {
    color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    width: 250px;
}

.services .card h3 {
    margin-bottom: 10px;
    color: #fc9b2c;
}

.services .card h4 {
    margin-bottom: 10px;
    color: #fc9b2c;
}
.services .card p {
    margin-bottom: 20px;
    color: #ffffff;
    font-style: italic;
}

.services .card li {
    color: #ffffff;
    font-style: italic;
}

.services .card ul {
    margin-top: 10px;
    color: #ffffff;
    font-style: italic;
}

.services .card hr {
    width: 75%;
    border: 0; 
    height: 1px;
    background-color: #3a3a3a;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: #ECF0F1;
    padding: 20px 0;
    text-align: center;
    transform: skewY(1deg);
}

footer p {
    margin: 0;
}

/* Logos Section */
.logos {
    text-align: center;
    background-color: #f9f9f9;
    background-color: #242424;
    margin-bottom: 50px;
}

.logos h2 {
    font-size: 2rem;
    color: white;
    font-style: italic;
}

/* Gitter der Logos */
.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 40px;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 70px;
}


/* Styling der Logos */
.logo-grid img {
    width: 200px;
    height: auto;
    object-fit: contain;
    border: 3px solid white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt für die Logos */
.logo-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Logos2 Section (INSTA POSTS) */
.logos2 {
    text-align: center;
    color: white;
    font-style: italic;
    margin-bottom: 50px;
}

.logos2 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Gitter der Logos */
.logo-grid2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 40px;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 70px;
}

/* Styling der Logos */
.logo-grid2 img {
    width: 200px; 
    height: auto;
    object-fit: contain; 
    border: 3px solid white;
    border-radius: 10px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

/* Hover-Effekt für die Logos */
.logo-grid2 img:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
}

/* website */
.website-section {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    margin-bottom: 100px;
    color: white;
    font-style: italic;
}

.website-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
}

.website-container img {
    border: 2px solid white;
    max-width: 1000px;
    height: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition:  0.2s transform ease;
}

.Website-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

.website-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* website2 */
.website2-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    background-image: url('./media/hg3.jpg');
    background-size: contain;
    background-position: center;
    color: white;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.website2-section h2 {
    font-size: 2rem;
    margin-top: 70px;
}

.website2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
    margin-bottom: 70px;
}

.website2-container img {
    border: 2px solid white;
    max-width: 1000px;
    height: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transition:  0.2s transform ease;
}

.Website2-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

/* sonstiges */
.sonstiges-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    background-image: url('./media/hg3.jpg'); 
    background-size: contain; 
    background-position: center;
    color: white;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.sonstiges-section h2 {
    font-size: 2rem;
    margin-top: 50px;
}

.sonstiges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    margin-bottom: 70px;
}

.sonstiges-container img {
    max-width: 250px;
    height: auto;
    margin: 10px;
    transition:  0.2s transform ease;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0, 0.5);
}

.sonstiges-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

/* sonstiges2 (Fairplay und BubblesVorstand) */
.sonstiges2-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    border-radius: 20px;
    background-image: url('./media/hg3.jpg'); 
    background-size: contain;
    background-position: center;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.sonstiges2-section h2 {
    margin-top: 50px;
    font-size: 2rem;
    color: white;
}

.sonstiges2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.sonstiges2-container img {
    max-width: 500px;
    height: auto;
    margin: 10px;
    transition:  0.2s transform ease;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0, 0.5);
}

.sonstiges2-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

/* MOBILE GAME SECTION */
.mobileGame-section {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    margin-bottom: 100px;
    border-radius: 10px;
    background-color: #242424;
    color: white;
    font-style: italic;
}

.mobileGame-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Mobile Game Container */
.mobileGame-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; 
}

/* Styling für jedes Mobile Game Bild */
.mobileGame-container img {
    max-width: 250px;
    height: 400px;
    margin: 10px;
    transition: 0.3s transform ease, 0.3s box-shadow ease;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Hover-Effekt für die Bilder */
.mobileGame-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* GameSection */
.game2-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    background-image: url('./media/hg3.jpg');
    background-size:contain;
    background-position: center;
    color: white;
    font-style: italic;
    box-shadow: 2px 2px 10px rgba(0,0,0, 0.5);
}

.game2-section h2 {
    font-size: 2rem;
    margin-top: 50px;
}

.game2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px;
    margin-bottom: 50px;
}

.game2-container img {
    max-width: 400px;
    height: auto;
    margin: 10px;
    transition:  0.2s transform ease;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0, 0.5);
}

.game2-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

/* GAMES */
.games-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    color: white;
    font-style: italic;
    margin-bottom: 50px;
}

.games-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* modelle */
.modelle-section {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    margin-bottom: 100px;
    color: white;
    font-style: italic;
}

.modelle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; 
}

.modelle-container img {
    max-width: 450px;
    height: 250px;
    margin: 10px;
    transition:  0.2s transform ease;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0, 0.5);
}

.modelle-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

.modelle-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* STICKER */
.sticker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    margin-bottom: 50px;
    color: white;
    font-style: italic;
}
.sticker-section h2 {
    font-size: 2rem;
    margin-top: 50px;
}

.sticker-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sticker-container img {
    max-width: auto;
    height: 200px;
    margin: 10px;
    transition:  0.2s transform ease;
}

.sticker-container img:hover {
    margin: 10px;
    transform: scale(1.03);
}

.sticker-container-rechteck {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sticker-container-rechteck img {
    max-width: 500px;
    height: 100px;
    margin: 10px;
    transition:  0.2s transform ease;
    border: 2px solid white;
    border-radius: 10px;
}

.sticker-container-rechteck img:hover {
    margin: 10px;
    transform: scale(1.03);
    border: 2px solid white;
    border-radius: 10px;
}

.active {
    color: rgb(48, 48, 48);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit; 
}

/* Allgemeine Button-Stile */
button, .glass-button, .back-button, a.button-style {
    z-index: 1000;
    display: inline-block;
    padding: 12px 24px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover-Effekt */
button:hover, .glass-button:hover, .back-button:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Klick-Effekt */
button:active, .glass-button:active, .back-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: rgb(255, 123, 0);
}

/* Überschrift für jede Kategorie */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    font-family: Serdan;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    transform: skewY(1deg);
    padding: 15px;
    text-align: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px; 
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: none;  
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 25%;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  
  #scrollToTopBtn:hover {
    background-color: #0056b3;
  }
  

/* Für spezifische Sektionen, in denen das Scrollen nicht erwünscht ist */
.sonstiges-section,
.sonstiges2-section,
.mobileGame-section,
.website-section,
.website2-section,
.game2-section,
.modelle-section,
.sticker-section,
.games-section {
    overflow: hidden;  
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Für kleine Screens */
@media (max-width: 1350px) {
    .container img,
    .website-container img,
    .website2-container img,
    .mobileGame-container img,
    .games-section img,
    .games-section iframe,
    .game2-container img,
    .sonstiges2-container img,
    .modelle-container img {
        max-width: 75%;  
        height: auto;    
    }

    /* HGs anpassen */
    .sonstiges-section,
    .sonstiges2-section,
    .mobileGame-section,
    .website-section,
    .website2-section,
    .game2-section,
    .modelle-section,
    .sticker-section,
    .games-section {
        background-size: cover;
    }

    .sticker-container img
    {
        max-width: 25%;
        height: auto;
    }

    .sonstiges-container img, .sticker-container-rechteck img, .mobileGame-container img
    {
        max-width: 35%;
        height: auto;
    }

    header .nav {
        flex-direction: column;
        text-align: center;
    }

    header .nav ul {
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

     /* About-Section */
     .about {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
        background-size:cover;
    }

    .about img {
        margin-right: 0px;
    }



}

/* Responsives Design */
/* @media (max-width: 768px) {
    header .nav {
        flex-direction: column;
        text-align: center;
    }

    header .nav ul {
        flex-direction: column;
        gap: 10px;
    }
} */


@media (max-width: 768px) {
    header .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    header .nav h1 {
        font-size: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    header .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    header .nav ul.show {
        display: flex;
    }

    header .nav ul li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #ECF0F1;
        margin: 5px;
        transition: transform 0.3s ease;
    }

    /* Animation Hamburger -> X */
    .hamburger.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Responsives Design */
@media (max-width: 610px) {
    .logo-grid img
    {
        max-width: 40%;
        height: auto;
    }

    .logo-grid2 img
    {
        max-width: 40%;
        height: auto;
    }
}
