/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
	background-image: url(https://clearvision.github.io/images/sapphire.jpg); /* app background image (link must be HTTPS) [default: url(https://clearvision.github.io/images/sapphire.jpg)]*/
	background-position: center; /* app background position [default: center] */
	background-size: cover; /* app background size [default: cover] */
	background-repeat: no-repeat; /* app background repeat [default: no-repeat] */
	background-attachment: fixed; /* app background attachment [default: fixed] */
	
	;
    color: #333;
}

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

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #0f56b5;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('https://www.example.com/hero-image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #ff5722;
    padding: 15px 30px;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e64a19;
}

/* Section Styles */
.section {
    padding: 60px 0;
	color: white;
}

.bg-light {
    background-color: #000000;
}

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

ul {
    list-style: none;
}

ul li {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.feature-item {
    background-color: #313131;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
}

/* Gallery Styles */
.gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.gallery img {
    width: 32%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #0f56b5;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    /* Stile für kleine Bildschirmen */
}

@media only screen and (min-width: 769px) {
    /* Stile für große Bildschirmen */
}


@media only screen and (max-width: 768px) {
    .container {
        width: 90%; /* Mehr Platz für Mobilgeräte */
    }

    .features-grid {
        grid-template-columns: 1fr; /* Statt 3 Spalten nur eine Spalte */
        gap: 20px; /* Weniger Abstand zwischen den Elementen */
    }

    .gallery {
        flex-direction: column; /* Bilder untereinander statt nebeneinander */
        gap: 10px; /* Geringere Abstände zwischen den Bildern */
    }

    .gallery img {
        width: 100%; /* Bilder nehmen die volle Breite ein */
    }

    header h1 {
        font-size: 1.8rem; /* Kleinere Schriftgröße für Header-Hauptüberschrift */
    }

    .hero h2 {
        font-size: 1.9rem; /* Kleinere Schriftgröße für H2 in der Hero-Sektion */
    }

    nav ul {
        flex-direction: column; /* Navigation untereinander anzeigen */
    }

    nav ul li {
        margin-bottom: 10px; /* Abstand zwischen den Links erhöhen */
    }

    .hero {
        padding: 50px 10px; /* Weniger Polsterung für kleinere Bildschirme */
        background-size: cover;
    }

    .feature-item h3, .feature-item p {
        text-align: center; /* Bessere Ausrichtung auf kleinen Bildschirmen */
    }
}
