:root {
    --primary-color: #29a3b1;
    --text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
}

.hero {
    min-height: 100vh;
    background-image: url('Enacti-Home-Page-Image-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: relative;
    width: 100%;
    z-index: 2;
}

.logo img {
    height: 60px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 2rem;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links a {
        margin-left: 1rem;
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    color: #333333;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 4rem;
    font-weight: normal;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.contact-item {
    flex: 0 1 300px;
}

.contact-item h3 {
    color: #ff4d4d;  /* Red color matching the image */
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-info {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .contact-info {
        gap: 2rem;
    }
} 