 body, html {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        color: #fff;
        min-height: 100vh;
    }

    body {
        background: url('images/IMG_0292 2.JPG') no-repeat center center fixed;
        background-size: cover;
        background-position: center 20%;
        background-attachment: fixed;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .content {
        position: relative;
        z-index: 2;
        min-height: 100vh;
    }

    header {
        padding: 20px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
/*         background-color: rgba(0, 0, 0, 0.7); */
    }

    nav ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
    }

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #b8b6b6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    h1, h2 {
        text-align: center;
        color: #fff;
    }

    .bio {
        background: rgba(0, 0, 0, 0.8);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 40px;
        position: relative;
    }

    .carousel {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
        overflow: hidden;
    }

    .carousel-inner {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel-item {
        min-width: 100%;
    }

    .carousel img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        object-position: center 20%;
    }

    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 10px;
        text-decoration: none;
        font-size: 18px;
    }
      .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
        }

    .carousel-control.prev { left: 10px; }
    .carousel-control.next { right: 10px; }

       @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                z-index: 1001;
            }

            nav ul {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 15px 0;
            }
        }

    @media screen and (max-width: 768px) {
        body {
            background-attachment: scroll;
        }

        .overlay {
            position: absolute;
        }

        .content {
            min-height: auto;
        }

        nav ul li {
            display: block;
            margin: 10px 0;
        }

        .container {
            padding: 20px 10px;
        }

        h1 {
            font-size: 24px;
        }

        .bio {
            padding: 20px;
        }

        .carousel {
            max-width: 100%;
        }

        .carousel img {
            height: 300px;
        }

        .carousel-control {
            padding: 5px;
            font-size: 14px;
        }
    }

    @media screen and (max-width: 480px) {
        h1 {
            font-size: 20px;
        }

        .bio {
            padding: 15px;
        }

        .carousel img {
            height: 250px;
        }
    }
