:root {
    --font-color-light: #141414;         /* Dunkles Grau für Haupttext */
    --font-color-dark: #FFFFFF;          /* Weiß für Text auf dunklen Hintergründen */
    --background-dark: #000000;          /* Schwarz für dunkle Hintergründe (z.B. Header, Footer) */
    --background-light: #D9D9D9;         /* Kühles Grau für helle Hintergründe (z.B. Sektionen, Karten) */
    --button-primary: #ee9338;           /* Blau für primäre Buttons */
    --button-secondary: #D9D9D9;         /* Kühles Grau für sekundäre Buttons */
    --button-text-light: #FFFFFF;        /* Weiß für Text auf Buttons */
    --alert-error: #FF2D20;              /* Signalrot für Warnhinweise und Fehlermeldungen */
    --alert-success: #36B37E;            /* Grün für Erfolgsindikatoren */
    --alert-warning: #f1c330;            /* Gelb für Warnhinweise ohne Dringlichkeit */
}

/*0056A6 */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.request{
    text-align: center;
    background-color: #F19B45;
    padding-left: 15px;
    padding-right: 15px;
    padding: 10px;
    border-radius: 7.5px;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    font-weight: normal;
    transition: background 0.2s ease-in-out;
}
.dropdown-menu a {
    cursor: pointer;
}
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: left;
    color: white;
    padding-left: 5%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.slide.active {
    opacity: 1;
}


.about {
    display: flex;
    padding: 50px;
    background: #f4f4f4;
}

.about img {
    width: 50%;
}

.about-text {
    padding: 20px;
}

.testimonials {
    text-align: center;
    padding: 50px;
    background: var(--background-light);
}

.testimonial {
    color: white;
    display: none;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    transition: transform 0.3s ease-in-out;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);

}

.testimonial.active {
    display: block;
}
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact {
    padding: 50px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}

.contact input, .contact textarea {
    padding: 10px;
    margin: 5px;
}

.contact button {
    background: orange;
    padding: 10px;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}


.quote {
    text-align: center;
    padding: 50px;
    background: var(--background-light);
}

.quote form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quote input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.quote .btn {
    background: orange;
    color: var(--button-text-light);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



.newsroom {
    padding: 50px;
    background: #f4f4f4;
    text-align: center;
}

h2{
    font-size: 35px;
}
.news-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%; 
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 25px;
}

.main-news-item img {
    width: 100%;
    height: 400px; 
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.small-news-items {
    width: 15%; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.news-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0px;
}

.news-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-item p {
    color: gray;
    font-size: 14px;
}





/* Über Uns Bereich */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.containerabout {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

/*
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #F19B45;
    margin: 0.5rem auto;
} SPÄTER ADDEN
 */


h2{
    color: #F19B45;
}
.hero .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero {
    background-image: url('assets/logistics.jpg');
}
.hero-txt{
    color: white;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.85);
    font-size: 45px;
}
.hero-content p {
    font-size: 17.5px;
}


.contact-info {
    text-align: left;
    display: inline-block;
    color: #ffffff;
}

.highlight {
    color: #ffffff;
    font-weight: bold;
}

.phone, .email {
    color: #2B2B2B;
    font-weight: bold;
    text-decoration: none;
}


.quote-container {
    text-align: center;
    padding: 50px;
    background: var(--background-light);
}

.quote-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background: #F19B45;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.tab-button:hover {
    background: rgba(239, 162, 84, 0.68);
}

.tab-button.active {
    background: #FF7300FF;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

select, input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background: var();
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    background: var(--button-primary);
}


.btn:hover {
    background: #FF7300FF;
}
