/* ========================================
   HOMEPAGE HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px; /* Space for fixed navbar */
}

.hero-content {
    max-width: 800px;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

/* Greeting text */
.greeting {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

/* "My Self" text */
.intro {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Your name - the biggest element */
.name {
    font-size: 5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Description paragraph */
.description {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Contact button */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN - Tablets and Mobile
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .name {
        font-size: 4rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .greeting {
        font-size: 2rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .name {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }
    
    .greeting {
        font-size: 1.5rem;
    }
}