/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #181818;  /* Dark background to reduce eye strain and mimic dark mode */
    margin: 0;
    padding: 0;
    color: #fff;  /* Light text color */
}

/* Header */
header {
    background-color: #212121;  /* Dark gray for a sleek look */
    color: #fff;
    font-family: 'Akzidenz-Grotesk Pro Bold Ext';
    padding: 20px;
    border-bottom: 1px solid #333;  /* Subtle bottom border */
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container .logo h1 {
    
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;  /* Ensure logo stands out */
}



/* Navigation */
nav {
    margin: 20px 0;
    text-align: center;
}

nav .project-button {
    background-color: #282828;  /* Dark gray for a sleek, modern appearance */
    color: white;  /* Light text for contrast */
    border: none;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 4px;  /* Small rounding for a clean look */
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}

nav .project-button:hover {
    background-color: #ff0000;  /* YouTube red on hover for a vibrant touch */
    opacity: 0.9;  /* Slight opacity change on hover */
}

/* Content */
.content {
    text-align: center;
    margin: 40px auto;
    padding: 40px;
    width: 80%;
    background-color: #202020;  /* Dark gray background to match the theme */
    border-radius: 8px;  /* Rounded corners for a softer look */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);  /* Adds depth with a subtle shadow */
    color: #fff;  /* Light text for readability */
}

/* Image Switching Container */
.image-container {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 20px 0;
}

#main-image {
    width: 1067px;
    height: 600px;
    border-radius: 4px;  /* Slight rounding for images */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);  /* Darker shadow to match the theme */
    border: 1px solid #333;  /* Dark border for subtle separation */
}

/* Image Switch Buttons */
.image-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 0, 0, 0.8);  /* Semi-transparent YouTube red for visibility */
    color: white;  /* Text color for contrast */
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 10%;  /* Circular buttons for a distinctive look */
    opacity: 0.8;  /* Slight opacity for a modern effect */
    transition: 0.72s;
}

.image-button:hover {
    opacity: 1;
    transform: scale(1.08);
    transition: 0.32s;
}

#prev-btn {
    left: -150px;
}

#next-btn {
    right: -150px;
}

/* Footer */
footer {
    background-color: #212121;  /* Consistent dark gray as in the header */
    color: #fff;  /* Light text for contrast */
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;  /* Subtle top border for separation */
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);  /* Shadow for depth */
}

footer a {
    color: #ff0000;  /* YouTube red for consistency with the header and buttons */
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s, opacity 0.3s;
}

footer a:hover {
    color: #ff6666;  /* Lighter red for hover effect */
    opacity: 1;  /* Full opacity on hover */
}

/* Modal Styles */
.modal {
    display: none;  /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);  /* Dark overlay */
    padding-top: 60px;
}



.modal-content {
    background-color: #202020;  /* Dark content background */
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #333;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;  /* Rounded corners for the modal */
    color: #fff;
}

.close-btn {
    color: #ff0000;  /* Red close button for consistency */
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #ff6666;  /* Lighter red on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    nav .project-button {
        width: 80%;
        margin: 10px auto;
    }
    .image-button {
        left: 10px;
        right: 10px;
    }
}
/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #181818;
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Header */
header {
    background-color: #212121;
    color: #fff;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container .logo h1 {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

/* Navigation */
nav {
    margin: 20px 0;
    text-align: center;
}

/* GIF Container */
.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.gif-container img {
    max-width: 100%;
    height: auto;
    border: 2px solid #fff;
    border-radius: 10px;
}


