
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

.hero {
    position: relative;
    height: 80vh;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.overlay {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
}

.description {
    font-size: 20px;
    line-height: 1.6;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
    background-color: #fff;
}

.gallery img {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.instagram-link {
    text-align: center;
    padding: 40px 20px;
    background-color: #f0f0f0;
    font-size: 18px;
}

.instagram-link a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.instagram-link a:hover {
    background-color: #000;
    color: #fff;
}
