* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: relative;
}

/* Overlay to improve text readability over the photo */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 0;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Ford Logo */
.logo img {

    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Title */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2.arabic {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f7c948;
}

/* Tagline */
.tagline {
    font-size: 1.1rem;
    color: #cfd8e6;
    margin-bottom: 8px;
}

.tagline-arabic {
    font-size: 1.1rem;
    color: #cfd8e6;
    margin-bottom: 30px;
    direction: rtl;
}

/* Divider */
.divider {
    width: 120px;
    height: 3px;
    background: #f7c948;
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.contact-item .icon {
    font-size: 1.4rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #f7c948;
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    h2.arabic {
        font-size: 1.5rem;
    }
    .logo img {
        max-width: 160px;
    }
}
