body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: beige;
}
header {
    display: flex;
    text-align: center;
    align-items: center;
    padding: 20px;
    background: #9e3535;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.profile-photo {
    border-radius: 50%;
    width: 150px; /* Adjust size as needed */
    margin-right: 20px; /* Space between photo and text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
    font-size: 2rem;
    color: #030202;
    text-align: center;
    margin: 0;
}
main {
    background-color: beige;
    padding: 20px;
    text-align: center;
}
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
    margin-top: 20px;
}
.gallery img {
    width: 350px;
    height:200px;
    object-fit:cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    background-color: #333;
    padding: 10px;
    width:100%
}

/* Navbar links and buttons */
.navbar a, .dropbtn {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    display: inline-block;
    font-size: 16px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Ensure dropdown works properly */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Make dropdown content visible on hover */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Ensures dropdown appears below the button */
    left: 0;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 10; /* Ensure it appears above other elements */
}

/* Ensure dropdown expands properly */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Fix button spacing */
.dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Dropdown items */
.dropdown-content a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
}

/* Improve hover effect */
.dropdown-content a:hover {
    background-color: #555;
}
