/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 60vh; /* Begrenze die Bildhöhe auf 60% der Viewport-Höhe */
    overflow: hidden;
}

#background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Default Style Start*/
.container{
    max-width: 1114px;
    margin: 0px auto;
    padding: 100px 20px;
}

.btn a{
    padding: 8px 15px;
    border-radius: 30px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn.trans a{
    background: rgba(255, 255, 255,0.3);
}

.btn.primary a{
    background-color: #1a361f;
}

.section-heading{
    max-width: 600px;
    margin: 0px auto;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.section-heading h2{
    margin-bottom: 25px;
    color: #231A36;
}
.section-heading p{
    color: #426666;
}

/* Default Style End*/


/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 60vh; /* Limit the video to 60% of the viewport height */
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    #background-video {
        height: 100vh; /* Adjust video size for mobile devices */
    }
}

/* Navbar Styles */
.navbar-container {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4); /* Transparente Navbar */
    padding: 20px;
    border-radius: 30px; /* Starke Abrundung der Ecken */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Leichter Schatten */
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-left a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar-left a:hover {
    color: #bbb;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right a .fa-instagram {
    color: white; /* Weißes Icon */
    font-size: 24px; /* Optionale Größe */
    transition: color 0.3s ease; /* Optional für einen Hover-Effekt */
}

.navbar-right a .fa-instagram:hover {
    color: #bbb; /* Farbe beim Hover */
}


.navbar-right button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navbar-right button:hover {
    background-color: #ddd;
}

.navbar-right a {
    margin-left: 20px;
}

.navbar-right a img {
    width: 24px;
    height: 24px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.burger-menu .line {
    width: 24px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-left a {
        display: none;
    }

    .navbar-right button {
        display: none;
    }

    .navbar-left #navbar-links.active a {
        display: block;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px;
        margin-top: 5px;
        border-radius: 10px;
    }
    
}

/* Title Styles */
.title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
}

.title-container h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

@media (max-width: 768px) {
    .title-container h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .title-container h1 {
        font-size: 1.5rem;
    }
}

/* Main Content */
main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgb(21 96 32),     rgb(0 122 55),     rgb(0 122 55));
    position: relative;
    z-index: 1;
    width: 100%;
}
.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.city {
    background-color: #DBE2EF;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(50, 167, 14, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 20px);
    padding: 15px;
}

.city img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0;
}

.city h2 {
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.city ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 15px;
}

.city ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.city button {
    background-color: #231A36;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.city button:hover {
    background-color: rgb(21 96 32);
}

.city:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive City Cards */
@media (max-width: 768px) {
    .city {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .city {
        width: 80%;
    }

    .city h2 {
        font-size: 1.25rem;
    }

    .city ul li {
        font-size: 0.9rem;
    }

    .city button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .footer-wrapper{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .footer-wrapper img{
        width: 150px;
    }


}

/* Footer Section Start */
footer{
    padding: 50px 0px;
	background: linear-gradient(to bottom, rgb(0 122 55), rgb(21 96 32))
}
footer img{
    width: 150px;
    height: auto;
}

.footer-wrapper{
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid grey;
}

.footer-wrapper ul{
    display: flex;
    gap: 25px;
    color: #ffffff;
}

.cp-write{
    text-align: center;
    margin-top: 30px;
    color:#ffffff;
}

a {
    text-decoration: none;
    color: inherit;
  }
/* Footer Section End */


/* Further Mobile Adjustments */
@media (max-width: 415px) {
    .navbar-right button {
        display: none;
    }

    .navbar-left {
        justify-content: space-between;
        width: 100%;
    }
}
