body {
    font-family: sans-serif;
    margin: 0;
    background-color: #fffffe; /* Soft beige */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-image: url('background.png'); /* Slightly transparent white for blurred background effect */
    background-repeat: no-repeat;
    /* filter:opacity(0.5); */
    background-size: cover;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    min-height: 94vh;
    max-width: 400px; /* Adjust for mobile screen width */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-bottom: 20px;
}

header h1 {
    color: #337958; /* Bold green */
    margin-bottom: 10px;
    font-size: 1.8em;
}

.logo .logo-circle img{
    scale: 0.5;
    height: 100%;
    width: 100%;
    mix-blend-mode: darken;
    margin-top: -50%;
    /* margin-bottom: -40%; */
}

.logo-circle {
    text-align: center;
}

.menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.menu-button {
    background-color: #f0fff0; /* Creamy */
    color: #337958; /* Green */
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    width: 40%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9em;
}

.menu-button i {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.contact-info {
    text-align: center;
}

.address {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-bottom: 10px;
}

.address i {
    margin-right: 5px;
    color: #337958; /* Green */
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-button {
    background-color: #337958; /* Green */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1.2em;
}

/* Specific social media colors (optional, for more brand consistency) */
.social-button.whatsapp {
    background-color: #25d366;
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.maps {
    background-color: #db4437;
}

/* Blurred Background Effect (using a pseudo-element) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(''); /* Replace with your blurred image path */
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(10px); /* Adjust blur intensity */
}