/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: #1a1a1a;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.logo-text {
    max-width: 650px;
    width: 100%;
    height: auto;
}

.logo-icon {
    width: 180px;
    height: auto;
}

/* Content Section */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    text-align: center;
    background: #1a1a1a;
}

.content h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.job-seeking {
    font-weight: 600;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem 6rem;
    background: linear-gradient(0deg, #E94B8B 0%, #7B5FB8 50%, #5B7FE8 100%);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ffffff;
}

.email {
    display: inline-block;
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.email:hover {
    border-bottom-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem 1.5rem;
    }

    .logo-text {
        max-width: 450px;
    }

    .logo-icon {
        width: 130px;
    }

    .content {
        padding: 2.5rem 1.5rem 3rem;
    }

    .contact {
        padding: 4rem 1.5rem;
        min-height: 45vh;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-text {
        max-width: 300px;
    }

    .logo-icon {
        width: 100px;
    }
}
