/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles */
.btn-orange {
    background-color: #f15a24;
    color: #fff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
    background-color: #e15a24;
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 15vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.hero-section h1 {
    font-size: 2.3rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card img {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.card-img-top-bottom {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.text-orange {
    color: #f15a24;
}

/* Kontaktbereich im Kachel-Design */
.contact-info {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Kontakt-Kacheln */
.contact-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 150px;
}

/* Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Links */
.contact-link {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    color: #f15a24;
    text-decoration: underline;
}

/* Kundenrezensionen Abschnitt */
.reviews-section {
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Review Card Styling */
.review-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Kundenbild */
.review-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Review Text */
.review-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
}

/* Sternebewertung */
.review-stars {
    font-size: 1.5rem;
    color: #f15a24;
    margin: 10px 0;
}

/* Author Name */
.review-author {
    font-size: 1rem;
    font-weight: bold;
    color: #f15a24;
    margin-top: 10px;
}

/* Impressum-Link */
.impressum-link {
    font-size: 1rem;
    color: #f15a24;
    font-weight: bold;
    text-decoration: none;
}

.impressum-link:hover {
    text-decoration: underline;
}

/* Footer-Styling */
.footer-link {
    color: #f15a24;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Maschinen Detail Kachel */
.machine-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.machine-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
}

.machine-card .card-body {
    padding: 20px;
}

.machine-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.machine-card .card-text {
    font-size: 1rem;
    color: #555;
}

/* Technische Tabelle */
.table {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
}

.table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.table-striped tbody tr:nth-child(even) {
    background-color: #fff;
}

/* Buttons */
.btn-orange {
    background-color: #f15a24;
    color: #fff;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
    background-color: #e15a24;
    color: #fff;
}

/* Footer-Styling */
.footer-link {
    color: #f15a24;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 20vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .table {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 20vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 20vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }
}
