
/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    color: #f4f4f4;
    font-family: 'Oklahoma', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #fff;
}

a {
    color: #2176FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D72638;
}

/* === Header === */
.site-header {
    background-color: #1a1a1a;
    padding: 20px;
    border-bottom: 2px solid #D72638;
}

.logo {
    text-align: center;
}

.logo img {
    width: 100px;
}

.motto {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
}

.site-nav li a {
    padding: 8px 16px;
    border-radius: 5px;
}

.site-nav li a.active, .site-nav li a:hover {
    background-color: #D72638;
    color: #fff;
}

/* === Hero === */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero .tagline {
    font-style: italic;
    margin-bottom: 20px;
}

.hero-button {
    background-color: #D72638;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

.hero-button:hover {
    background-color: #2176FF;
}

/* === Bio === */
.bio-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

.bio-content p {
    margin-bottom: 20px;
}

/* === Projects, Blog, Gallery, Contact === */
.projects-page, .blog-page, .gallery-page, .contact-page {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.project-grid, .gallery-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-section, .gallery-item, .blog-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.project-section:hover, .gallery-item:hover, .blog-card:hover {
    transform: translateY(-5px);
}

.placeholder {
    background-color: #333;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-radius: 6px;
}

/* === Contact Form === */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #333;
    border: 1px solid #555;
    color: #f4f4f4;
    border-radius: 4px;
}

.contact-form .submit-button {
    background-color: #2176FF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-form .submit-button:hover {
    background-color: #D72638;
}

/* === Footer === */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 15px;
    text-align: center;
    border-top: 2px solid #D72638;
}

footer .social-links a {
    color: #aaa;
}

footer .social-links a:hover {
    color: #fff;
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
