/* Allgemeine Styles */
body {
    margin: 0;
    font-family: 'Roboto', 'Tajawal', sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #111;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 130px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #d4af37;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: white;
}

/* Hero Sektion */
.hero {
    position: relative;
    height: 90vh;
    background: url('images/dubai-skyline.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1, .hero h2 {
    color: #d4af37;
    text-shadow: 1px 1px 4px #000;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

.testimonials {
    padding: 100px 40px;
    text-align: center;
}

.testimonials h2,

/* Video */

.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.video-container {
    width: 100%;
    max-width: 1200px;
}

.video-container video {
    width: 90%;
    height: auto;
    display: block;
    border-radius: 12px; /* optional für abgerundete Ecken */
}

/* Dienstleistungs-Sektion */
.services {
    text-align: center;
    padding: 50px;
    background: #181818;
}

.services h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 30px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.service-box img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
    transition: 0.3s ease;
}

.service-box h3 {
    font-size: 22px;
    color: #d4af37;
    margin-top: 15px;
}

.service-box p {
    font-size: 16px;
}

/* Dienstleistungs-Sektion1 */
.services {
    text-align: center;
    padding: 50px;
    background: #181818;
}

.services h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 30px;
}

.service-container1 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}

.service-box img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
    transition: 0.3s ease;
}

.service-box h3 {
    font-size: 22px;
    color: #d4af37;
    margin-top: 15px;
}

.service-box p {
    font-size: 16px;
}

/* Testimonial */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-box {
    background-color:  #181818;
    padding: 30px;
    width: 300px;
    border-radius: 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
}

.testimonial-box p {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-box span {
    font-weight: bold;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
    font-size: 14px;
}
/* Kontaktformular */
.contact {
    text-align: center;
    padding: 50px;
    background: #181818;
}

.contact h2 {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 10px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-size: 16px;
    color: #d4af37;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid gold;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 16px;
}

input:focus, textarea:focus {
    border-color: white;
    outline: none;
}

textarea {
    resize: none;
}

button.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

button.btn:hover {
    background: white;
    color: black;
}

.karte {
    margin-top: 40px;
}

.language-switcher img {
    border: 1px solid gold;
    border-radius: 3px;
    transition: transform 0.2s ease;
}
.language-switcher img:hover {
    transform: scale(1.1);
    cursor: pointer;
}
/* Blog-Sektion */
.blog {
    padding: 60px 40px;
    background: #111;
    text-align: center;
    color: white;
}

.blog h2 {
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* Kommentar-Formular */
.blog form {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.blog input[type="text"],
.blog textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid gold;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 16px;
}

.blog input[type="text"]:focus,
.blog textarea:focus {
    border-color: white;
    outline: none;
}

.blog hr {
    border: 1px solid gold;
    margin: 40px auto;
    width: 80%;
}

/* Kommentare anzeigen */
.blog div p {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    margin: 10px auto;
    max-width: 600px;
    text-align: left;
    border-left: 4px solid gold;
}

.blog div strong {
    color: #d4af37;
}
