/* Body styles */
body {
    max-width: 40em;
    margin: 0 auto;
    padding: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    line-height: 1.6em;
    color: #fff; /* White text */
    background-color: #222; /* Dark grey background */
}

/* Header styles */
header {
    text-align: center; /* Center the logo */
    margin-bottom: 20px; /* Add space below the header */
    padding: 10px 0;
    position: relative; /* Ensure the hamburger button stays inside the header */
}

    header img {
        max-width: 100%; /* Ensure the image is responsive */
        height: auto;
        width: 250px; /* Adjust logo size */
        border: none !important; /* Remove border from the logo */
        border-radius: 0 !important; /* Ensure the logo is not rounded */
    }

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
}

    .hamburger .bar {
        width: 100%;
        height: 4px;
        background-color: #ffbb00; /* Golden yellow */
        border-radius: 5px;
    }

/* Navigation Menu */
#menu {
    display: none;
    position: absolute; /* Position relative to the header */
    top: 50px; /* Position below the hamburger */
    right: 15px; /* Align with the hamburger button */
    background-color: #222; /* Dark background */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    width: 200px; /* Set a fixed width */
}

    #menu.show {
        display: block;
    }

/* Ensure the navigation list is properly aligned */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    nav ul li {
        padding: 10px;
        text-align: left;
    }

        nav ul li a {
            color: #ffbb00; /* Golden yellow */
            text-decoration: none;
            display: block;
            padding: 10px;
        }

            nav ul li a:hover {
                color: #66ccff; /* Light blue */
                background: #444; /* Slightly lighter grey */
            }

/* Ensure alignment on mobile */
@media only screen and (max-width: 600px) {
    #menu {
        position: fixed; /* Full-screen side menu */
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        padding-top: 50px;
    }
}


/* Form input styles */
input[type="text"],
input[type="email"],
textarea {
    width: 100% !important; /* Make text fields take full width */
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ffbb00; /* Golden yellow border */
    border-radius: 5px;
    background-color: #444; /* Dark background for input */
    color: #fff; /* White text */
    margin-bottom: 15px; /* Space between fields */
}

/* Specifically style textarea */
textarea {
    height: 150px; /* Make the message textarea taller */
}

/* Headings */
h1, h2, h3 {
    font-family: 'Impact', sans-serif; /* Use Impact font for headings */
    font-weight: normal;
}

h1 {
    color: #66ccff !important; /* Light blue */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Shadow for headings */
}

h2 {
    color: #ffbb00; /* Golden yellow */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Shadow for headings */
}

/* Links */
a {
    color: #66ccff; /* Light blue */
    text-decoration: none;
}

    a:hover {
        text-decoration: underline; /* Underline on hover */
    }

/* Sections */
section {
    padding: 40px;
    background-color: #333; /* Dark grey background for sections */
    margin: 20px 0;
    border-radius: 10px;
}

/* Menu */
#menu ul {
    list-style: none;
    font-size: 18px;
}

    #menu ul li {
        margin-bottom: 10px;
        color: #ffbb00; /* Golden yellow */
    }

/* Footer */
footer {
    background-color: #444; /* Slightly lighter grey */
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Responsive design */
@media only screen and (max-width: 600px) {
    body {
        font-size: 16px;
    }

    header img {
        width: 200px; /* Make the logo smaller on mobile */
    }
}

/* Add border around other images inside <a> tags but NOT the logo */
a img:not(header img) {
    border: 3px solid #fff; /* White border with 3px width */
    border-radius: 50%; /* Keeps other images circular */
}

/* Circle effect for 'itsben.jpg' only */
.circle-image {
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fills the circle without distortion */
}

/* Italicized text */
.italicized-text {
    font-style: italic;
    color: #ffffff; /* Optional: If you want to override the text color */
}
