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


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

.gradient-text-lr {
  /* 1. Define the gradient background */
  background: linear-gradient(to right, black, white);
  
  /* 2. Clip the background to the text shape */
  -webkit-background-clip: text;  /* For Safari, Chrome, and other WebKit browsers */
  background-clip: text;
  
  /* 3. Make the text color itself transparent */
  color: transparent;

  /* Optional: Ensures the text is rendered as a single block for the gradient */
  display: inline-block; 
}

.with-scrollbar {
    scrollbar-width: auto !important;
    -ms-overflow-style: auto !important;
}

.font-dancing-script {
    font-family: 'Dancing Script', cursive !important;
}

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

/* .font-story-a {
    font-family: 'Story Script', cursive !important;
} */

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

html[data-bs-theme="dark"] .btn-transparent {
    background-color: rgba(var(--bs-dark-rgb), 0.5) !important;
    backdrop-filter: blur(0.5rem);
}

html[data-bs-theme="light"] .btn-transparent {
    background-color: rgba(var(--bs-light-rgb), 0.5) !important;
    backdrop-filter: blur(0.5rem);
}

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

html[data-bs-theme="light"] .color-theme-svg {
    color: rgb(255, 255, 255);
    background-color: var(--bs-light);
}

html[data-bs-theme="dark"] .color-theme-svg {
    color: rgb(0, 0, 0);
    background-color: var(--bs-dark);
}

html[data-bs-theme="light"] .bg-light-dark {
    background-color: rgb(var(--bs-light-rgb));
}

html[data-bs-theme="dark"] .bg-light-dark {
    background-color: rgb(var(--bs-dark-rgb));
}

html[data-bs-theme="light"] .bg-white-black {
    background-color: rgb(var(--bs-white-rgb));
}

html[data-bs-theme="dark"] .bg-white-black {
    background-color: rgb(var(--bs-black-rgb));
}

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

.width-loading {
    width: 25%;
}

.cursor-pointer {
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .width-loading {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .width-loading {
        width: 75%;
    }
}

svg {
    display: block;
    line-height: 0;
    shape-rendering: geometricPrecision;
    backface-visibility: hidden;
}

.svg-wrapper {
    overflow: hidden !important;
    transform: translateZ(0) !important;
}

.no-gap-bottom {
    margin-bottom: -0.75rem !important;
}

/* 1. Define the animation keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);    /* Start at normal size */
  }
  50% {
    transform: scale(1.1);  /* Scale up (like your hover) */
  }
  100% {
    transform: scale(1);    /* Return to normal size */
  }
}

/* 2. Apply the animation to your elements */
#thank-you-end, 
#thank-you-text {
  animation: pulse 2s ease-in-out infinite;
}

#button-scroll-top:hover, #button-music:hover {
    transform: scale(1.1);
    background-color: black !important;
    color: white;
}

::selection {
    background-color: pink;
    /* color: white; */
}

.invitation-wedding-date {
    background: rgb(255 249 241);
    border: 2px dashed rgb(223 203 179);
    border-radius: 20px;
}

#note-img {
    color: #414141;
    background: white;
    border-radius: 10px;
    padding: 2px 10px;
}


.title-name {
    color: red;
    font-weight: 700;
}

.title-name:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.album-img
 #guest-name:hover {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

#guest-name {
    font-weight: 800;
    font-size: 2.2rem;
    color: red;
}

#time-261020, #time-131020 {
    font-size: 1.5rem;
    font-style: italic;
}

.slide-img {
    border-radius: 20px;
}

.invite-date {
    font-size: 1.8rem;
    font-weight: 700;
}

.img-top {
    object-position: top;
}