@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #050505;
    background-image: linear-gradient(rgba(255, 42, 95, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 42, 95, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #ffffff;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    text-decoration: none;
    background: linear-gradient(90deg, #ff2a5f, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hit-me-up {
    border: 1px solid #ff2a5f;
    padding: 12px 24px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hit-me-up:hover {
    background-color: #ff2a5f;
    box-shadow: 0 0 20px rgba(255, 42, 95, 0.6);
}

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-img {
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

h1 {
    font-size: 4.5rem;
    max-width: 900px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-text {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 100px;
}

.projects-section, .tech-section {
    padding: 100px 50px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 66, 95, 0.2);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.project-card:hover {
    border-color: #ff2a5f;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.15);
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.tech-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 42, 95, 0.3);
    border-top: 4px solid #ff2a5f;
    padding: 30px;
    width: 250px;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-info {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.tech-card:hover {
    background: #111111;
    transform: translateY(-5px);
}

.tech-card:hover .tech-info {
    max-height: 100px;
    opacity: 1;
    margin-top: 20px;
}

.content-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    background: rgba(20, 20, 20, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 42, 95, 0.3);
}

input, textarea {
    background: transparent;
    border: 1px solid #ff6b35;
    color: white;
    padding: 15px;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

button {
    background: linear-gradient(90deg, #ff2a5f, #ff6b35);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.scroll-anim {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-section {
    padding: 100px 50px;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, #0a0a0a, #111111);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #ff6b35;
    transform: scale(1.02);
}

footer {
    background: #000000;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 42, 95, 0.1);
}

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer-info {
    color: #888;
    font-size: 0.9rem;
    line-height: 2;
}

.footer-info a {
    color: #ff2a5f;
    text-decoration: none;
}