/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Or your chosen font e.g., 'Roboto' */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Light gray background for contrast with sections */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* Clear floats if any */
    padding: 0 20px;
}

/* Header & Logo */
header {
    background: #fff; /* White background for the header */
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: fixed; /* Make header sticky */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo #logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
}

.logo span { /* If using text logo */
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh; /* Full viewport height */
    background: url('hero-image-ar.jpg') no-repeat center center/cover; /* Replace 'hero-image-ar.jpg' */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* Account for fixed header height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em; /* Adjust as needed */
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.5em; /* Adjust as needed */
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px; /* Constrain width of paragraph */
    margin-left: auto;
    margin-right: auto;
}

.cta-button { /* Optional button styling */
    display: inline-block;
    background: #d22030; /* Example primary color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #971520; /* Darker shade on hover */
}


/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #fff; /* White background */
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.contact-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.contact-details p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-details a {
    color: #d22030; /* Example primary color */
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .contact-section h2 {
        font-size: 2em;
    }
    .logo #logo-img {
        height: 40px;
    }
    .hero {
        padding-top: 70px; /* Adjust if header height changes */
    }
}