@import url("common.css");
@import url("animation.css");

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
    display: none !important;
}

.font-greet {
    font-family: 'Sacramento', cursive !important;
}


.font-esthetic {
    font-family: 'Palatino Linotype', serif !important;
}

body {
    font-family: 'Palatino Linotype', serif !important;
}


.font-arabic {
    font-family: 'Noto Naskh Arabic', serif !important;
}

.img-center-crop {
    width: 14rem;
    height: 14rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.btn-music {
    bottom: 9vh;
    right: 2vh;
    z-index: 1055;
}

.btn-theme {
    bottom: 15vh;
    right: 2vh;
    z-index: 1055;
}

.loading-page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1056;
}

.color-theme-white {
    color:#b1bca0;
    background-color: var(--bs-light);
}

.color-theme-black {
    color: rgb(0, 0, 0);
    background-color: var(--bs-dark);
}

section {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
}

.bg-cover-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(0.5turn, transparent, black 10%, black 90%, transparent);
}

#welcome {
    /* Set the background image */
    background-Color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Ensure the image fits on mobile and has no white borders */
    #welcome {
        background-size: contain; /* Use 'contain' to show the entire image */
        background-position: center center; /* Center the image */
    }
    
    /* Adjust button position for mobile screens */
    #open-button {
        bottom: 10%; /* Adjust button position for smaller screens if needed */
    }
}


.greeting-text {
    font-size: 1.3rem;
    color: #74583E; /* Color that fits the invitation theme */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Invitation Container */
.invitation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Invitation Card */
.invitation-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding: 20px;
}

.card-header {
    margin-bottom: 20px;
}

.venue-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.card-body {
    margin: 20px 0;
}

.invitation-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.couple-names {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #5a5a5a;
}

.invite-text {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 20px;
}

.wedding-details p {
    font-size: 1.1rem;
    margin: 5px 0;
    color: #333;
}

/* Button Styles */
.btn {
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
/*    background-color: #3EC1F0;*/
    background-color: #b1bca0;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*.btn:hover {
    background-color: #3EC1F0;
}*/

.card-footer {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .invitation-card {
        width: 95%;
        padding: 15px;
    }

    .invitation-title {
        font-size: 1.5rem;
    }

    .couple-names {
        font-size: 1.3rem;
    }

    .invite-text {
        font-size: 1rem;
    }

    .wedding-details p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .greeting-text {
        font-size: 1.1rem;
    }
}