/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #f4f4f9;
    /* Subtle off-white */
    border-bottom: 2px solid #e0e0e0;
    /* Soft border for separation */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4CAF50;
    /* Accent color for hover */
}

.burger {
    display: none;

    cursor: pointer;

    flex-direction: column;

    justify-content: space-around;

    width: 2rem;

    height: 2rem;
}

.burger div {
    width: 2rem;

    height: 0.25rem;

    background-color: #333;

    border-radius: 10px;

    transition: all 0.3s linear;

    position: relative;

    transform-origin: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero .hero-image {
    width: 100%;
    height: auto;
    filter: brightness(70%);
}

.hero .overlay {
    pointer-events: none;
    /* Ensure it does not intercept clicks */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

.hero-text .btn:hover {
    background: #45a049;
}

/* Carousel */
.carousel {
    padding: 2rem;
    background: #f9f9f9;
    text-align: center;
}

.carousel h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #4CAF50;
}

.image-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.image-container img {
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #f9fafc;
    /* Soft light grey */
    border-top: 2px solid #e0e0e0;
    /* Subtle separation */
    color: #555;
    font-size: 0.9rem;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
    /* Subtle shadow on the top */
}

footer p {
    margin: 0;
    line-height: 1.5;
}

footer p a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .burger {
        display: flex;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none;

        flex-direction: column;

        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .image-container img {
        height: 150px;
        /* Smaller image size on smaller screens */
    }
}