Skip to content
Snippets Groups Projects
stylesheet.css 14.8 KiB
Newer Older
„Sophia's avatar
„Sophia committed
body {
    margin: 0;
„Sophia's avatar
„Sophia committed
    font-family: "DM Sans", sans-serif;
„Sophia's avatar
„Sophia committed
    color: #03355C;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;

„Sophia's avatar
„Sophia committed
header {
    background-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Schatten für Abgrenzung */
}

.nav {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
    padding: 20px 10%;

}

.logo img {
    height: 50px;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    margin: 0;
    padding: 0;
    align-items: center;
    box-sizing: border-box;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed
}

.nav-links li a {
    text-decoration: none;
    color: #03355c;
    font-size: 26px;
    font-weight: 500;
    align-items: center;
}

.nav-links li a:hover {
    color: #03355c; /* Hover-Farbe */
    opacity: 0.5;
}

„Sophia's avatar
„Sophia committed
#merkliste-navbar {
„Sophia's avatar
„Sophia committed
    font-size:40px;
    color: #03355c;

}
„Sophia's avatar
„Sophia committed
#merkliste-navbar:hover {
„Sophia's avatar
„Sophia committed
    color: #03355c; /* Hover-Farbe */
    opacity: 0.5;
}

.fa-circle-user {
    margin-right: 30px;
    color: #03355c;
    font-size: 40px;
}
.fa-circle-user:hover {
    color: #03355c;
    opacity: 0.5;
    border: none;
}

„Sophia's avatar
„Sophia committed
#dropdown-anmelden {
„Sophia's avatar
„Sophia committed
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Schatten für Abgrenzung */
    color: #03355c;
}

„Sophia's avatar
„Sophia committed
#login-button {
„Sophia's avatar
„Sophia committed
    background-color: #fb7300;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    margin-left: 10px;
„Sophia's avatar
„Sophia committed

„Sophia's avatar
„Sophia committed
}
„Sophia's avatar
„Sophia committed
#login-button:hover {
„Sophia's avatar
„Sophia committed
    background-color: #e36c20;
    color: #ffffff;
}
„Sophia's avatar
„Sophia committed
#exampleDropdownFormEmail2 {
„Sophia's avatar
„Sophia committed
    border-color: #03355c;
    border-radius: 50px;
}
„Sophia's avatar
„Sophia committed
#exampleDropdownFormPassword2 {
    border-color: #03355c;
    border-radius: 50px;
„Sophia's avatar
„Sophia committed
}

.footer {
    background-color: #03355C;
    color: #fff;
    padding: 20px 10%;
    font-size: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo img {
    max-width: 150px;
}


.footer-section h4 {
    margin-bottom: 20px;
}



.footer-section ul {
    list-style: none;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.footer-section ul li a {
    color: #fff;
    margin: 20px;
}

.footer-section ul li a:hover {
    opacity: 0.5;
}

.payment-icons img {
    max-height: 40px;
    margin-right: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 45px;
    margin-right: 20px;
}

.social-icons a:hover {
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

/* Überschrift mit eigener Schriftart */
„Sophia's avatar
„Sophia committed
#h1-landkarte {
„Sophia's avatar
„Sophia committed
    font-family: Cy Grotesk Wide;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed
    font-size: 34px;
„Sophia's avatar
„Sophia committed
    margin: 0;
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
    padding-top: 200px;
„Sophia's avatar
„Sophia committed
}

/* Absatztext mit Standardschriftart */
„Sophia's avatar
„Sophia committed
#subtitle-landkarte {
„Sophia's avatar
„Sophia committed
    font-family: 'DM Sans', sans-serif; /* Schriftart für den Absatztext */
    color: #03355C;
„Sophia's avatar
„Sophia committed
    font-size: 20px; /* Schriftgröße */
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
}

Sarah Gloger's avatar
Sarah Gloger committed

„Sophia's avatar
„Sophia committed

/* Kartensektion */
.map-container {
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
}

.map {
    max-width: 100%; /* Karte passt sich der Bildschirmbreite an */
    height: auto;
}


„Sophia's avatar
„Sophia committed
#beispielreisen-carrousel {
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center;
    align-items: center;
}

„Sophia's avatar
„Sophia committed
.card-carrousel-reisen .position-relative {
Sarah Gloger's avatar
Sarah Gloger committed
    object-position: center; /* Zentriert das Bild innerhalb des Containers */
„Sophia's avatar
„Sophia committed
    display: flex;
    flex-direction: column; /* Für vertikale Inhalte */
    gap: 10px;
„Sophia's avatar
„Sophia committed
}

„Sophia's avatar
„Sophia committed
.card-img-beispiel {
„Sophia's avatar
„Sophia committed
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
Sarah Gloger's avatar
Sarah Gloger committed
    fill-rule: evenodd;
    width: 600px;
    height: 200px;
„Sophia's avatar
„Sophia committed
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
„Sophia's avatar
„Sophia committed
    color: #e36c20;
„Sophia's avatar
„Sophia committed
    background: #ffffff;
„Sophia's avatar
„Sophia committed
    padding: 5px 10px;
    border-radius: 5px;
}

.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
„Sophia's avatar
„Sophia committed
    width: 40px;
    height: 40px;
    color: #03355C;
„Sophia's avatar
„Sophia committed
}
„Sophia's avatar
„Sophia committed


Sarah Gloger's avatar
Sarah Gloger committed
    .card-carrousel-reisen {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px auto; /* Automatische Zentrierung */
        width: 600px; /* Maximale Breite der Karte */
        height: 450px;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2); /* Schatten */
        border-radius: 10px; /* Abgerundete Ecken */
        overflow: hidden; /* Damit der Inhalt innerhalb der abgerundeten Kanten bleibt */
    }
    .card-body {
        text-align: center;
        padding: 15px;
    }

    #carousel-title {
„Sophia's avatar
„Sophia committed
    padding: 20px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
„Sophia's avatar
„Sophia committed

„Sophia's avatar
„Sophia committed
}

„Sophia's avatar
„Sophia committed
#carousel-title h2 {
„Sophia's avatar
„Sophia committed
    font-family: Cy Grotesk Wide;
    font-size: 34px;
„Sophia's avatar
„Sophia committed
    margin: 0;
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
    padding-top: 200px;
„Sophia's avatar
„Sophia committed
}

„Sophia's avatar
„Sophia committed
#carousel-title p {
„Sophia's avatar
„Sophia committed
    font-family: "DM Sans", sans-serif;
    margin: 0;
„Sophia's avatar
„Sophia committed
    font-size: 26px;
„Sophia's avatar
„Sophia committed
    color: #03355c;
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
}

„Sophia's avatar
„Sophia committed
.card-title-carousel {
„Sophia's avatar
„Sophia committed
    font-family: 'DM Sans', sans-serif;
„Sophia's avatar
„Sophia committed
    color: #03355C;
Sarah Gloger's avatar
Sarah Gloger committed
    text-align: start;
„Sophia's avatar
„Sophia committed
}
„Sophia's avatar
„Sophia committed
.card-text-carousel {
„Sophia's avatar
„Sophia committed
    font-family: 'DM Sans', sans-serif;
„Sophia's avatar
„Sophia committed
    color: #03355C;
Sarah Gloger's avatar
Sarah Gloger committed
    text-align: start;
„Sophia's avatar
„Sophia committed
}
.carousel-control-prev,
.carousel-control-next {
    color: #03355c;
}
/* Positioniere die Pfeile außerhalb des Karussells */
.carousel-control-prev,
.carousel-control-next {
„Sophia's avatar
„Sophia committed
    top: 50%;
„Sophia's avatar
„Sophia committed
    transform: translateY(-50%);
}

/* Verschiebe die Pfeile nach außen */
.carousel-control-prev {
„Sophia's avatar
„Sophia committed
    left: -70px
„Sophia's avatar
„Sophia committed
}

.carousel-control-next {
„Sophia's avatar
„Sophia committed
    right: -70px;
„Sophia's avatar
„Sophia committed
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
„Sophia's avatar
„Sophia committed
    background-color: #03355c;
„Sophia's avatar
„Sophia committed
}

.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed
}

.fa-chevron-right {
„Sophia's avatar
„Sophia committed
    font-size: 40px;
„Sophia's avatar
„Sophia committed
    color: #03355C;
}

/* Pfeil links (Karussell) */
.fa-chevron-left {
„Sophia's avatar
„Sophia committed
    font-size: 40px;
„Sophia's avatar
„Sophia committed
    color: #03355C;
„Sophia's avatar
„Sophia committed

„Sophia's avatar
„Sophia committed
}

Victoria Badeke's avatar
Victoria Badeke committed
    /*SPA*/
    .page {
        display: none;
    }
    .active {
        display: block;

„Sophia's avatar
„Sophia committed
#backButton {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: #03355C; /* Dunkelblau passend zur Überschrift */
    cursor: pointer;
}

„Sophia's avatar
„Sophia committed
#card-registrieren {
„Sophia's avatar
„Sophia committed
    background-color: #FCF3E4; /* Heller Beige-Hintergrund */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 701px; /* Breite des Formulars */
    height: 775px;
    text-align: center;

}

h1 {
    font-family: Cy Grotesk Wide;
    font-size: 34px;
    color: #03355C; /* Dunkelblau für die Überschrift */
    margin-bottom: 20px;
}

„Sophia's avatar
„Sophia committed
.form-control-registrieren {
„Sophia's avatar
„Sophia committed
    width: 525px;
    height: 57px;
    padding-left: 15px;
    margin-bottom: 10px;
    border: 1px solid #03355C; /* dunkelblauer Rahmen */
    border-radius: 30px; /* Runde Ecken für Eingabefelder */
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    color: #03355C;
}

„Sophia's avatar
„Sophia committed
.form-text-registrieren {
„Sophia's avatar
„Sophia committed
    text-align: left;
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 15px;
    color: #03355C; /* Dunkelblauer Text */
    padding-left: 90px; /* Gleiche Einrückung wie das Eingabefeld */
}


#registrierenButton {
    background-color: #FB7300; /* Orange Farbe */
    font-family: "DM Sans", sans-serif, bold;
    font-size: 26px;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    width: 242px;
    height: 55px;
    margin: 30px;
}

#registrierenButton:hover {
    background-color: #e36c20; /* Etwas dunkleres Orange bei Hover */
„Sophia's avatar
„Sophia committed
}
Sarah Gloger's avatar
Sarah Gloger committed

Victoria Badeke's avatar
Victoria Badeke committed
 /*Meine Reisen*/

/* Sidebar */
.sidebar {
    background-color: #f1f4f9;
    width: 322px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.back-button {
    background: none;
    border: none;
    font-size: 30px;
    color: #03355C;
    cursor: pointer;
    margin-bottom: 20px;
}

.greeting {
    font-family: 'DM Sans', sans-serif;
    color: #03355C;
    font-size: 26px;
    margin-bottom: 40px;
}

.menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.menu li {
    margin-bottom: 15px;
}

.menu a {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #03355C;
    font-size: 20px;
}

 /* Main Content */
.content {
    flex-grow: 1;
    padding: 20px;
    background-color: #ffffff;
    overflow-y: auto;
}

h2 {
    font-family: 'Cy Grotesk Wide';
    font-size: 34px;
    color: #03355C;
    margin-bottom: 20px;
}

.trip-card {
    width: 662px;
    height: 163px;
    display: flex;
    align-items: center;
    background-color: #FCF3E4;
    border-radius: 30px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trip-card img {
    width: 246px;
    height: 163px;
    border-radius: 30px;
    margin-right: 15px;
    object-fit: cover;
}

.trip-info {
    font-family: 'DM Sans', sans-serif;
    color: #03355C;
    font-size: 20px;
    flex-grow: 1;
}

h3 {
    font-family: 'dM Sans', sans-serif;
    font-size: 34px;
    margin: 0;
    color: #03355C;
}

.details-button, .report-button {
    margin-top: 10px;
    padding: 10px 15px;
    font-family: 'dm sans', sans-serif, bold;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.details-button {
    background-color: #FB7300;
    color: #fff;
}

.report-button {
    background-color: #FCF3E4;
    color: #03355C;
    border: 1px solid #FB7300;
    margin-left: 10px;
}

/*Profil*/

/* Sidebar */
.sidebar {
    background-color: #f1f4f9;
    width: 322px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.back-button {
    background: none;
    border: none;
    font-size: 30px;
    color: #03355C;
    cursor: pointer;
    margin-bottom: 20px;
}

.greeting {
    font-family: 'DM Sans', sans-serif;
    color: #03355C;
    font-size: 26px;
    margin-bottom: 40px;
}

.menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.menu li {
    margin-bottom: 15px;
}

.menu a {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #03355C;
    font-size: 20px;
}

/*Main Body*/

        .profil-container {
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
        }

        h1 {
            text-align: center;
            font-family: 'Cy Grotesk Wide';
            font-size: 34px;
            color: #03355C;
        }

        .profil-card {
            width: 644px;
            height: auto; /* Automatische Höhe für dynamische Inhalte */
            background-color: #FCF3E4;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .section {
            margin-bottom: 20px;
        }

        h2 {
            margin-bottom: 10px;
            font-family: 'DM Sans', sans-serif;
            font-weight: bold;
            color: #03355C;
            font-size: 26px;
        }

        .row {
            display: flex;
            justify-content: space-between; /* Platz zwischen den Spans */
            align-items: center; /* Zentriere den Text vertikal */
            padding: 5px 0;
        }

        .row span {
            display: inline-block; /* Stellt sicher, dass Spans korrekt dargestellt werden */
            white-space: nowrap; /* Verhindert, dass Inhalte umbrechen */
        }

        .row span:first-child {
            font-family: 'DM Sans', sans-serif;
            font-size: 20px;
            color: #03355C;
            flex: 1; /* Erlaubt dynamische Breite */
        }

        .row span:last-child {
            font-family: 'DM Sans', sans-serif;
            font-size: 20px;
            color: #03355C;
            text-align: right; /* Richtet den Text am rechten Rand aus */
            flex: 1; /* Erlaubt dynamische Breite */
        }

        .row:last-child {
            border-bottom: none;
        }

„Sophia's avatar
„Sophia committed
    .hero {
        position: relative;
        text-align: right;
        color: white;
        padding-bottom: 200px;
    }

    .hero-image {
        width: 100%;
        height: auto;
    }

    .hero-text {
        color: #03355C;
        position: absolute;
        top: 30%;
        left: 80%;
        transform: translate(-50%, -50%);
        white-space: nowrap; /* Verhindert Zeilenumbrüche */
    }

    #hero-button {
        background-color: #fb7300;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        margin-left: 10px;
        cursor: pointer;

    }

    #hero-button:hover {
        background-color: #e36c20 /* Dunkleres Orange bei Hover */
    }
Sarah Gloger's avatar
Sarah Gloger committed

/* Horizon Changers Section */
„Sophia's avatar
„Sophia committed
.horizon-changers-opening {
Sarah Gloger's avatar
Sarah Gloger committed
    background-color: #f5f9ff; /* Heller Hintergrund */
    padding: 60px 20px; /* Abstand innen */
    text-align: center; /* Zentriert den Text */
}

.horizon-changers-opening-container {
    max-width: 900px; /* Maximale Breite für den Textbereich */
    margin: 0 auto; /* Zentriert den Container */
„Sophia's avatar
„Sophia committed
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);

Sarah Gloger's avatar
Sarah Gloger committed
}

.horizon-changers-opening-title {
„Sophia's avatar
„Sophia committed
    font-family: Cy Grotesk Wide;
    font-size: 43px; /* Schriftgröße */
Sarah Gloger's avatar
Sarah Gloger committed
    color: #03355c; /* Dunkelblau */
    margin-bottom: 20px; /* Abstand nach unten */
    margin-top: 60px;
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
Sarah Gloger's avatar
Sarah Gloger committed

}

.horizon-changers-description {
    font-family: "DM Sans", sans-serif; /* Standardschriftart */
    font-size: 1.2rem; /* Schriftgröße für den Absatz */
    color: #03355c; /* Dunkelblau */
„Sophia's avatar
„Sophia committed
    margin-bottom: 40px; /* Abstand nach unten */
Sarah Gloger's avatar
Sarah Gloger committed
    line-height: 1.6; /* Zeilenhöhe für Lesbarkeit */
„Sophia's avatar
„Sophia committed
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
„Sophia's avatar
„Sophia committed
    text-align: center;
    white-space: nowrap; /* Verhindert Zeilenumbrüche */
Sarah Gloger's avatar
Sarah Gloger committed
}

.horizon-changers-button {
„Sophia's avatar
„Sophia committed
    background-color: #fb7300;
    color: #ffffff;
Sarah Gloger's avatar
Sarah Gloger committed
    font-family: "DM Sans", sans-serif; /* Button-Schriftart */
„Sophia's avatar
„Sophia committed
    font-size: 26px; /* Schriftgröße */
Sarah Gloger's avatar
Sarah Gloger committed
    padding: 12px 25px; /* Innenabstand */
    border: none; /* Keine Umrandung */
    border-radius: 30px; /* Runde Kanten */
    cursor: pointer; /* Zeigt Klickbarkeit an */
„Sophia's avatar
„Sophia committed
    align-items: center;
Sarah Gloger's avatar
Sarah Gloger committed
}

.horizon-changers-button:hover {
„Sophia's avatar
„Sophia committed
    background-color: #e36c20
} /* Dunkleres Orange bei Hover */
Sarah Gloger's avatar
Sarah Gloger committed

„Sophia's avatar
„Sophia committed
.page {
    display: none;
}

.active {
    display: block;
„Sophia's avatar
„Sophia committed
}
„Sophia's avatar
„Sophia committed
}