
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('https://hemsida.design/wp-content/uploads/2023/08/bg-blue-mix-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #000000;
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    text-align: center;
}

.main-title {
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.description {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 100px;
    margin: 30px 0;
}

.visit-button {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.image-row img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease-in-out;
}

/* Fade animations */
.image-anim {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description {
        padding: 0 30px;
    }
}
