
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; 
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

header {
    background-color: #0f0e1c; 
    color: #00ffcc; 
    padding: 60px 20px 30px; 
    text-align: center;
    border-bottom: 2px solid #00ffcc; 
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    margin-bottom: 10px;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
}

header .tagline {
    font-size: 1.2em;
    font-style: italic;
    color: #a0a0a0;
}


section {
    padding: 60px 20px;
    margin-bottom: 20px;
}

section:nth-of-type(even) {
    background-color: #2a2a4a;
}

h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffcc;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
    margin-bottom: 20px;
}

#hero {
    background-color: #1a1a2e; 
}

#hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 20px auto 30px;
}

.btn {
    display: inline-block;
    background-color: #00ffcc;
    color: #0f0e1c;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.btn:hover {
    background-color: #00e6b8;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.8);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    background-color: #0f0e1c;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #00ffcc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
}

.project-item h4 {
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.project-item p {
    font-size: 0.95em;
    color: #c0c0c0;
}

.tag-upcoming {
    background-color: #ffaa00;
    color: #1a1a2e;
    font-size: 0.7em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

/* Footer Styles */
footer {
    background-color: #0f0e1c;
    color: #a0a0a0;
    padding: 40px 20px;
    border-top: 2px solid #00ffcc;
    text-align: center;
}

footer h3 {
    color: #00ffcc;
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #00ffcc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00e6b8;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.follow-text {
    color: #e0e0e0;
    font-size: 1em;
    margin-right: 15px;
    line-height: 1;
}

.social-icons-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon-link {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.social-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    transition: transform 0.2s ease-in-out;
}

.social-icon-link:hover .social-icon {
    transform: scale(1.1);
}