/* Core Layout */
html {
    background-color: black;
    scroll-behavior: smooth;
}

body {
    color: white;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.navbar a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a:hover {
    color: #888;
}

/* Hero Section */
.hero {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Courier New', Courier, monospace;
    border-top: 1px solid white;
    padding-top: 10px;
    margin-top: 15px;
}

/* Content Layout */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 2rem;
    border-bottom: 1px solid white;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.year-label {
    margin-top: 60px;
    border-left: 3px solid white;
    padding-left: 15px;
    text-transform: uppercase;
}

/* Project Grid */
.project-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.project-card {
    width: 350px;
    text-align: center;
    margin-bottom: 40px;
}

.project-img {
    width: 100%;
    height: 197px;
    object-fit: cover;
}

/* Contact Footer Section */
.contact-footer {
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-top: 1px solid #333;
}

.contact-title {
    text-align: center;
    color: white;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input, .form-textarea {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-textarea {
    height: 150px;
    resize: vertical; 
    min-height: 100px;
}

.form-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    width: fit-content;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

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

/* Success Message Styling with Animation */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    border: 1px solid #fff;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.social-links {
    margin-top: 50px;
    text-align: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}

.separator {
    color: #fff;
    margin: 0 15px;
}