/* Styles for the entire site */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* Background Video */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1;
}
.top-bar .logo {
    font-size: 24px;
    color: #fff;
}
.top-bar nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

/* Blurred Panel */
.blurred-panel {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto; /* Center panel horizontally */
    max-width: 800px;
    position: relative;
    box-sizing: border-box;
}

/* Home page styles */
.home-content {
    padding-top: 80px; /* Ensure content isn't hidden behind fixed top bar */
    text-align: center;
}
.home-image {
    display: inline-block;
    margin: 0 20px;
}
.home-text {
    display: inline-block;
    vertical-align: middle;
}

/* About page styles */
.about-content {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin: 40px auto;
    max-width: 800px;
    padding-top: 80px; /* Ensure content isn't hidden behind fixed top bar */
}
.about-photo-link {
    margin-right: 20px;
}
.about-photo {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.about-text {
    max-width: 600px;
}

/* Projects page styles */
.projects-content {
    text-align: center;
    padding-top: 80px; /* Ensure content isn't hidden behind fixed top bar */
}
.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.project-box {
    background: rgba(0, 0, 0, 0.8); /* Black background with slight transparency */
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #fff; /* White text for better contrast */
}
.project-icon {
    width: 100px;
    height: 100px;
}

/* Photo Album styles */
.photo-album {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.photo-item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure content sections are not affected by fixed elements */
.content {
    padding-top: 80px; /* Ensure there's enough space for the top bar */
}



/* Audio player styles */
.audio-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.audio-controls button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
}
