/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Questrial', sans-serif;
    height: 100%;
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

/* Content Section */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.description {
    font-size: 24px;
    line-height: 1.5;
}

/* Footer and Contact Section */
.contact {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: white;
}

/* WhatsApp Section */
.whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: -60px;
    margin-bottom: 10px;
    font-size: 28px; /* Larger font size */
    font-weight: bold;
    color: orange; /* Text color for number */
}

.whatsapp-icon {
    width: 100px; /* Fixed size for WhatsApp logo */
    height: 67px;
}

/* Instagram Section */
.instagram, a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 28px; /* Larger font size */
    font-weight: bold;
    color: orange; /* Text color for username */
}

a {
    margin-bottom: 00px;

}

.instagram-icon {
    display: flex;
    width: 400px; /* Consistent size for Instagram logo */
    height: 400px;
}

/* Address Section */
.address {
    font-size: 14px;
    color: white;
}