@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Doto', 'Courier New', monospace;
    background-color: #091a10;
    background-image: 
        linear-gradient(rgba(29, 49, 37, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 49, 37, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    color: #ffffff;
    line-height: 1.6;
    padding: 180px 20px 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 800px;
    width: 100%;
    height: 120px;
    background-color: rgba(9, 26, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.header-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    overflow: hidden;
    opacity: 0.5;
}

.header-border svg {
    width: 100%;
    height: 56px;
}

header .container-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.logo {
    flex-shrink: 0;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #22c55e;
}

.tagline {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.08);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

section:hover {
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 20px;
    border-bottom: 1px solid #1d3125;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.2rem;
    color: #22c55e;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #22c55e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

a:hover {
    border-bottom: 1px solid #22c55e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-label {
    color: #22c55e;
    min-width: 80px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #1d3125;
    border-radius: 8px;
    transition: all 0.3s;
    border-bottom: 1px solid #1d3125;
}

.tech-item:hover {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    transform: translateY(-5px);
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.9);
}

.tech-item span {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

footer {
    margin-top: 80px;
    padding-top: 86px;
    border-top: 1px solid #1d3125;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    position: relative;
}

.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    overflow: hidden;
    opacity: 0.5;
    transform: scaleY(-1);
}

.footer-border svg {
    width: 100%;
    height: 56px;
}

.footer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    opacity: 0.7;
}
/* Mobile styles */
@media (max-width: 768px) {
    .tagline {
        font-size: 12px;
    }
    
    .header-border {
        height: 40px;
    }
}