body {
    background-color: #000000;
    color: #FFB000; /* Amber color */
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
}

/* CRT screen effect */
/* body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
} */

h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
}

a {
    color: #FFB000;
    text-decoration: none;
    border-bottom: 2px solid #FFB000;
}

a:hover {
    text-shadow: 0 0 10px #FFB000;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    padding: 20px;
    border-bottom: 3px solid #FFB000;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Video container */
.video-container {
    /* position: relative; */
    border: 3px solid #FFB000;
    padding: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 0 20px #FFB00044;
}

/* Portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.portfolio-item img {
    width: 100%;
    border: 2px solid #FFB000;
}

/* Portfolio enhancements */
.image-container {
    position: relative;
    margin-bottom: 10px;
}

.image-label {
    position: absolute;
    bottom: 5px;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #FFB000;
    padding: 8px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    border: 2px solid #FFB000;
    text-shadow: 0 0 5px #FFB000;
}

.project-description {
    border: 2px solid #FFB000;
    padding: 15px;
    margin-top: -5px; /* Connects to image container */
    background: #000;
}

.project-description h3 {
    color: #FFB000;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.project-description p {
    margin: 0;
    line-height: 1.4;
}

/* Add hover effect */
.portfolio-item:hover .image-label {
    background: rgba(255, 176, 0, 0.9);
    color: #000;
    text-shadow: none;
}

.portfolio-item:hover img {
    box-shadow: 0 0 15px #FFB000;
}

/* Contact form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    background: #000;
    border: 2px solid #FFB000;
    color: #FFB000;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
}

.form-button {
    background: #000;
    border: 2px solid #FFB000;
    color: #FFB000;
    padding: 10px 30px;
    cursor: pointer;
}

.form-button:hover {
    background: #FFB000;
    color: #000;
}

.frame-border {
    border: 2px solid #FFB000;
    margin-bottom: 10px;
}

/* Fullscreen viewer */
.fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    text-align: center;
    cursor: pointer;
}

.fullscreen-image {
    max-height: 80vh;
    max-width: 90vw;
    margin: 5vh auto;
    border: 3px solid #FFB000;
    box-shadow: 0 0 30px #FFB000;
}

.fullscreen-caption {
    color: #FFB000;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2em;
    margin-top: 20px;
    text-shadow: 0 0 10px #FFB000;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFB000;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 10px #FFB000;
    transition: 0.3s;
}

.close-btn:hover {
    color: #FF0000;
    transform: scale(1.2);
}
