html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arial", sans-serif;
}

.hero {
    background: url('/public/images/hero.jpg') center/cover no-repeat;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero .content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s ease;
}

.info-section img {
    border-radius: 12px;
}

.contact-card {
    background: var(--bs-light);
    border-radius: 12px;
    padding: 25px;
    transition: 0.25s;
    animation: fadeUp 0.8s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

.contact-card {
    background: var(--bs-body-bg);
    border-radius: 12px;
    padding: 25px;
    transition: 0.25s;
}