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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('img/0fX4cUDw.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 800px;
    animation: fadeIn 1.2s ease-in;
}

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

.logo-container {
    margin-bottom: 60px;
}

.company-name {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
    font-style: italic;
}

.contact-section {
    margin: 80px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.email {
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.email:hover {
    color: #7dd3fc;
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(125, 211, 252, 0.5);
}

.footer {
    margin-top: 60px;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Responsive design */
@media (max-width: 768px) {
    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .email {
        font-size: 1.3rem;
    }

    .content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .email {
        font-size: 1.1rem;
    }
}

