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

body {
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2e78;
    background-color: #FDF8EE;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    background: #FDF8EE;
    color: #2c2e78;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

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

.logo {
    width: 20vw;
    height: auto;
    margin-bottom: 30px;
    filter: none;
    animation: logoFadeIn 1s ease-in-out 0.5s forwards;
    opacity: 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

@keyframes blurReveal {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
    }
}

.hero .address {
    font-size: 16px;
    margin-top: 20px;
    color: #2c2e78;
    animation: blurReveal 1s ease-in-out 1.3s forwards;
    opacity: 0;
}

/* Contact Section */
.contact {
    background-color: #FDF8EE;
    padding: 60px 20px;
    border-top: none;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c2e78;
    display: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    margin-bottom: 0;
}

.contact-item:hover {
    transform: none;
    box-shadow: none;
}

.contact-item h3 {
    color: #2c2e78;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    display: none;
}

.contact-item p {
    color: #2c2e78;
    font-size: 16px;
    margin: 0;
    animation: blurReveal 1s ease-in-out 1.3s forwards;
    opacity: 0;
}

.contact-item a {
    color: #2c2e78;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2c2e78;
    text-decoration: underline;
}

.contact-item[data-contact="phone"] {
    display: none;
}

/* Footer */
footer {
    background-color: #2c2e78;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .logo {
        width: 50vw;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .contact h2 {
        font-size: 28px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 30px 20px;
    }

    .contact-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .contact {
        padding: 40px 15px;
    }

    .contact-item {
        padding: 20px;
    }
}
