/* Custom Styles */
@font-face {
    font-family: "TheYoungestrg";
    src: url("../../fonts/The\ Youngest\ Script-Rg.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "TheYoungestbook";
    src: url("../../fonts/The\ Youngest\ Serif-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DroidSerif";
    src: url("../../fonts/DroidSerif-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "poppins";
    src: url("../../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
#loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.background-image {
    background-image: url("assets/img/ourservicewelcome.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.service-title {
    font-size: 36px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: "TheYoungestbook", sans-serif;
}

.container1 a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.service-buttons {
    margin-top: 50px;
    font-family: "poppins", sans-serif;
}

.section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.wedding-title {
    font-family: "TheYoungestbook", sans-serif;
}

.wedding-description {
    font-family: "poppins", sans-serif;
}
.wedding-section {
    padding: 50px 0;
}
.wedding-title {
    font-size: 24px;
    font-weight: bold;
}
.wedding-description {
    margin-top: 20px;
}
.order-button {
    margin-top: 20px;
}
.body {
    font-family: "The Youngest", sans-serif;
}

.btn order-button {
    background-color: #e49999;
}

.order-button:hover {
    background-color: #e49999 !important;
    border-color: #e49999 !important;
    color: white !important;
}

.outer-wrapper {
    background-color: orange;
    padding: 5px; /* Sesuaikan sesuai kebutuhan */
    margin-right: 20px; /* Atur margin kanan untuk memindahkan outer-wrapper lebih ke kiri */
    display: inline-block;
    position: relative;
    border-radius: 10px; /* Untuk memberikan efek keluar */
}

.outer-wrapper img {
    display: block;
    border-radius: 5px; /* Sesuaikan dengan border-radius dari outer-wrapper */
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3); /* Efek bayangan */
    position: relative;
    z-index: 1;
    transform: translateX(10px); /* Geser gambar ke kanan */
}

.outer-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: orange;
    z-index: -1;
    border-radius: 10px; /* Untuk memberikan efek keluar */
}

/* Animasi Fade-In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi Slide-In dari Kiri */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animasi Slide-In dari Kanan */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
