@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

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

body {
    font-family: 'Tenor Sans', sans-serif;
    background: linear-gradient(135deg, #EDE9E4 100%, #D6C2AC 100%);
    color: #4D4D3B;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    padding: 2rem;
}

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

/* Logo Mark */
.logo-mark {
     width: 45%;
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: slideDown 1.2s ease 0.3s forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    font-size: clamp(5rem, 15vw, 14rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1rem;
    color: #A9613E;
    animation: slideDown 1.2s ease 0.3s forwards;
    opacity: 0;
}

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

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #A9613E;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.5s forwards;
}

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

.divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #A9613E, transparent);
    margin: 0 auto 3rem;
    opacity: 0;
    animation: expandWidth 1.2s ease 0.7s forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.message {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #4D4D3B;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s forwards;
}

.submessage {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #908669;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.1s forwards;
}

/* Contact Info */
.contact-info {
    margin: 3rem 0 2.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.3s forwards;
}

.email {
    color: #436387;
    text-decoration: none;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.5s forwards;
}

.social-link {
    color: #908669;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
}

.social-link:hover {
    color: #436387;
    background: rgba(67, 99, 135, 0.1);
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1.2s ease 1.8s forwards;
    width: 90%;
    max-width: 600px;
}

.footer p {
    font-size: clamp(0.5rem, 2vw, 0.75rem);
    letter-spacing: 0.05em;
    color: #908669;
    text-align: center;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-mark {
        width: 90%;
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: slideDown 1.2s ease 0.3s forwards;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }

    .divider {
        margin-bottom: 2rem;
    }

    .contact-info {
        margin: 2rem 0 2rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .footer {
        bottom: 1rem;
        padding: 0 1rem;
    }
}