:root {
    --primary-color: #000000; /* Black for headings and main text */
    --secondary-color: #ffffff; /* White for backgrounds and text on dark */
    --accent-color: #ff0000; /* Red accent from curtains */
    --text-color: #333333; /* Dark gray for body text */
    --background-color: #ffffff; /* Main background */
    --dark-background: #000000; /* Dark sections */
    --light-text: #999999; /* Lighter text for addresses, etc. */
    --border-radius: 20px; /* For rounded images */
    --font-family-heading: 'Arial Black', sans-serif; /* Bold headings */
    --font-family-body: 'Arial', sans-serif; /* Body text */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.header {
    background-color: var(--background-color);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-toggle, .nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.nav-menu {
    display: flex;
}

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

.nav-menu li {
    margin-left: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
}

.hidden {
    display: none;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

section {
    margin-bottom: 4rem;
}

h1, h2, h3 {
    font-family: var(--font-family-heading);
    color: var(--primary-color);
    font-weight: 900;
    margin-top: 0;
}

.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8); /* Slight darken for text readability */
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary-color);
    width: 100%;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.about {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.about-content {
    flex: 2;
}

.about-content h2 {
    font-size: 2.5rem;
}

.experience h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.experience ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.experience-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.experience-images img {
    width: 100%;
    border-radius: var(--border-radius);
}

.team {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.team h2 {
    font-size: 2.5rem;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.capabilities {
    position: relative;
    color: var(--secondary-color);
    padding: 4rem 2rem;
}

.capabilities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken for text */
}

.capabilities-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capabilities-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--primary-text-color);
    background-color: var(--bg-color);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.contact-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken the image for better text visibility */
}

.contact-content {
    z-index: 1;
    max-width: 600px;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--accent-color);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
    background-color: rgb(11, 211, 11);
    transform: scale(1.05);
}
.contact p::before {
    content: '📩 ';
}

.pdf-downloads {
    text-align: center;
}

.pdf-downloads h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pdf-downloads ul {
    list-style: none;
    padding: 0;
}

.pdf-downloads li {
    margin-bottom: 0.5rem;
}

.pdf-downloads a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        padding: 1rem;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-close {
        display: block;
        text-align: right;
    }

    .about, .team, .contact {
        flex-direction: column;
    }

    .hero {
        height: 40vh;
    }

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

    .hero-content p {
        flex-direction: column;
        text-align: center;
    }
}

/* JS for nav - assuming you add this in script */
/* function toggleNav() {
    document.getElementById('navMenu').classList.add('active');
}

function closeNav() {
    document.getElementById('navMenu').classList.remove('active');
} */