@import"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap";

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

body {
    font-family: "DM Sans", serif;
    height: 100vh;
    /*overflow: hidden;*/
    position: relative;
    background-image: url("./weareadd-back.jpg");
    background-size: cover;
background-position: 50% 50%;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px 40px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.logo-section {
    margin-top: 20px;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: -10px;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.95;
}

.subtitle p {
    margin-bottom: 5px;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email, .phone {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
    text-decoration: none;
    color: #FFF;
}

.email {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email:hover {
    opacity: 1;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px 30px;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .main-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .contact-intro, .email, .phone {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 15px 25px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .contact-intro, .email, .phone {
        font-size: 0.95rem;
    }
}

/* Subtle animation for the main content */
.main-content {
    animation: fadeInUp 1s ease-out;
}

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

.logo-section {
    animation: fadeInDown 1s ease-out;
}

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

.contact-section {
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}