* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background-color: #000;
    padding: 0px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.social-media {
    position: absolute;
    top: 20px;
    right: 20px;
}


.social-media a {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;
    transition: background-image 0.3s ease;
	margin-left: 15px;
}

.social-media a.youtube {
    background-image: url('images/social-youtube.png');
}

.social-media a.youtube:hover {
    background-image: url('images/social-hover-youtube.png');
}

.social-media a.facebook {
    background-image: url('images/social-facebook.png');
}

.social-media a.facebook:hover {
    background-image: url('images/social-hover-facebook.png');
}

.social-media a.twitter {
    background-image: url('images/social-x-fill.png');
}

.social-media a.twitter:hover {
    background-image: url('images/social-hover-x-fill.png');
}

.social-media a.instagram {
    background-image: url('images/social-instagram.png');
}

.social-media a.instagram:hover {
    background-image: url('images/social-hover-instagram.png');
}

.logo {
    height: 50px;
}

/* Hero */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin: 0;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


/* Projects */
.projects {
    padding: 60px 20px;
    text-align: center;
}

.projects h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

.project-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 30%;
	box-sizing: border-box;
}

.project img {
    width: 100%;
    border-radius: 8px;
}

.project h3 {
    margin: 20px 0 10px;
    font-size: 1.5em;
}

.project p {
    font-size: 1em;
}

@media (max-width: 768px) {
    .project-list {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 80%;
        margin: 20px 0;
    }

    .projects h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .project h3 {
        font-size: 1.3em;
        margin: 15px 0 8px;
    }

    .project p {
        font-size: 0.9em;
    }
}


.learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #663BE0;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

.learn-more:hover {
    background: #8458FF;
}

/* Team */
.team {
    padding: 60px 20px;
    text-align: center;
}

.team h2 {
    margin-bottom: 40px;
    font-size: 2em;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    width: 20%;
    margin: 10px;
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9em;
}

/* Mobile */
@media (max-width: 768px) {
    .team-member {
        width: 80%;
        margin: 20px 0;
    }

    .team h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .team-member h3 {
        font-size: 1.1em;
    }

    .team-member p {
        font-size: 0.85em;
    }

    .team-member img {
        width: 80px;
        height: 80px;
    }
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact a {
    color: #3498db;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 20px 0;
    color: #fff;
    text-align: center;
	position: relative;
}

.footer p {
    margin: 0;
}

body {
    font-family: 'Orbitron', 'Oswald', 'Lato', Arial, sans-serif !important;
    background: #181818 url('images/bg-simple-page.jpg') repeat;
    color: #e0dcc3 !important;
    font-size: 18px;
    letter-spacing: .01em;
}

@media (max-width: 1599px) {
    body { font-size: 16px; }
}

a, .learn-more, .contact a {
    color: #ffb400 !important;
    text-decoration: none !important;
    transition: color 0.2s, box-shadow 0.2s;
}
a:hover, .learn-more:hover, .contact a:hover {
    color: #fff6c1 !important;
    text-shadow: 0 0 8px #ffb40055;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', 'Oswald', 'Courier New', monospace !important;
    color: #fff6c1 !important;
    text-shadow: 0 1px 8px #000, 0 0 2px #ffb40055;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Headers and Hero */
.header, .footer {
    background: #000 !important;
    color: #fff6c1 !important;
}
.logo {
    filter: drop-shadow(0 2px 8px #ffb40088);
    height: 60px;
}

.hero {
    background: url('images/hero-bg.jpg'), #20201c;
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px 0;
    color: #fff6c1 !important;
    border-bottom: 2px solid #ffb40033;
}
.hero h2 {
    font-size: 3em;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}
.hero p {
    font-size: 1.3em;
    color: #fffbe0;
}

/* Social Icons */
.social-media a {
    filter: drop-shadow(0 0 5px #ffb40077);
    opacity: .92;
}
.social-media a:hover {
    opacity: 1;
    filter: drop-shadow(0 0 10px #ffb400cc);
}

/* Projects/Team/Contact/Blocks */
.projects,
.team,
.contact {
    background: rgba(22, 22, 22, 0.96);
    border: 1px solid #232319;
    border-radius: 12px;
    box-shadow: 0 4px 32px #0007;
    padding: 54px 28px;
    margin-bottom: 56px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.projects h2, .team h2, .contact h2 {
    border-left: 6px solid #ffb400;
    padding-left: 16px;
    margin-bottom: 32px;
}
.project {
    background: rgba(28, 28, 28, 0.95) !important;
    color: #e0dcc3 !important;
    border: 1px solid #39340f;
    border-radius: 10px;
    box-shadow: 0 3px 20px #0009;
    transition: box-shadow 0.2s;
}
.project:hover {
    box-shadow: 0 7px 30px #ffb40033, 0 2px 10px #000a;
}
.project h3 {
    color: #ffb400 !important;
    text-shadow: 0 0 8px #ffb40033, 0 1px 6px #000;
}

.team-member {
    background: rgba(22,22,22,0.98);
    border-radius: 10px;
    box-shadow: 0 1px 7px #0008;
    border: 1px solid #2a2009;
    padding: 18px 5px 24px 5px;
    margin-bottom: 24px;
}
.team-member h3 {
    color: #fff6c1;
    text-shadow: 0 0 8px #ffb40044;
}
.team-member p {
    color: #e0dcc3;
}

/* Buttons */
.learn-more,
button,
input[type="submit"] {
    background: linear-gradient(90deg, #ffb400 60%, #bc8300 100%);
    color: #20201c !important;
    border: none;
    font-family: 'Orbitron', 'Oswald', Arial, sans-serif;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 3px 14px #ffb40022;
    padding: 12px 32px;
    font-size: 1em;
    text-transform: uppercase;
    margin: 14px 0 0 0;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.learn-more:hover,
button:hover,
input[type="submit"]:hover {
    background: linear-gradient(90deg, #ffe66e 60%, #ffb400 100%);
    color: #181818 !important;
    box-shadow: 0 0 12px #ffb40088;
}

/* Contact links */
.contact a {
    color: #ffb400 !important;
    font-weight: bold;
}
.contact a:hover {
    color: #fff6c1 !important;
}

/* Footer style */
.footer {
    background: #141414 !important;
    color: #888 !important;
    font-size: 1em;
    border-top: 1px solid #ffb40044;
    padding-top: 36px;
    letter-spacing: .01em;
}
.footer p {
    color: #aaa;
    font-size: 1em;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .projects, .team, .contact {
        padding: 32px 7px;
    }
    .project, .team-member {
        padding: 13px 2px 16px 2px;
    }
    .hero {
        padding: 60px 0 30px 0;
    }
    .logo {
        height: 42px;
    }
}

/* Subtle texture overlay on main background */
body:after {
    content: '';
    position: fixed;
    top:0; left:0; right:0; bottom:0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.07;
    background: url('images/grain.png');
}

/* Divider lines */
hr, .divider {
    border: none;
    border-top: 2px solid #ffb40033;
    margin: 40px auto;
    width: 80%;
}

/* Section titles underline */
.projects h2, .team h2, .contact h2 {
    position: relative;
}
.projects h2:after, .team h2:after, .contact h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffb400 50%, transparent 100%);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 3px;
    opacity: .85;
}
