@font-face {
    font-family: 'TT Ramillas';
    src: url('../fonts/TTRamillas-Light.woff2') format('woff2'),
         url('../fonts/TTRamillas-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Ramillas';
    src: url('../fonts/TTRamillas-Regular.woff2') format('woff2'),
         url('../fonts/TTRamillas-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Navigation */
.site-header {
    padding: 60px 5vw 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'TT Ramillas', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0;
}

.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.site-nav a:hover {
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

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

.hero-tagline {
    font-family: 'TT Ramillas', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Project Card */
.featured-project {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.project-title {
    font-family: 'TT Ramillas', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.project-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.project-credibility {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.project-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.project-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 14px;
}

.project-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-links a:hover {
    color: #000;
}

.project-links span {
    color: #ccc;
}

/* Other Projects Section */
.other-projects {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'TT Ramillas', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
}

.project-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.coming-soon {
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'TT Ramillas', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.location {
    color: #666;
    font-size: 15px;
}

.tech-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.tech-badge {
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Footer */
.site-footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a,
.protected-email {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.footer-links a:hover,
.protected-email:hover {
    opacity: 0.6;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.archive-link {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.archive-link:hover {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 40px 20px 30px;
        flex-direction: column;
        gap: 25px;
    }
    
    .site-logo {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }
    
    .site-nav {
        gap: 20px;
    }
    
    .site-nav a {
        font-size: 14px;
    }
    
    .hero-section {
        padding: 60px 20px 40px;
    }
    
    .hero-tagline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .project-card {
        padding: 35px 25px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-description {
        font-size: 16px;
    }
    
    .project-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .profile-image {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .footer-links {
        gap: 20px;
        font-size: 14px;
    }
}