@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.swal2-popup {
    font-size: 13px !important;
    /* font-family: Georgia, serif; */
  }
/* customizable snowflake styling */
.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}

@-webkit-keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes snowflakes-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes snowflakes-fall{0%{top:-10%}100%{top:100%}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default;-webkit-animation-name:snowflakes-fall,snowflakes-shake;-webkit-animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:snowflakes-fall,snowflakes-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.snowflake:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.snowflake:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.snowflake:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.snowflake:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.snowflake:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.snowflake:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.snowflake:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.snowflake:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.snowflake:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.snowflake:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.snowflake:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.snowflake:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}

body {
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    background-color: #f3f2f1;
}

*:not(i) {
    font-family: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

:before,
:after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.container {
    max-width: 1140px;
    margin: auto
}

header,
section,
footer {
    display: block;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    color: #000000;
    font-weight: 700;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 2px;
    margin: 0;
    text-transform: capitalize;
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5 ease;
}

.header.fixed {
    background-color: #ffffff;
    box-shadow: 0 0 8px #cccccc;
}

.header .logo {
    padding: 0 15px;
}

.header .logo a {
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

/* .header.fixed .logo a {
    color: #000000;
} */

.header .hamburger-btn {
    display: inline-block;
    height: 34px;
    width: 40px;
    border-radius: 5px;
    border:  2.5px solid #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    display: none;
}

.header.fixed .hamburger-btn {
    border-color: #fb839e;
    background-color: #f3f2f1;
}

.header .hamburger-btn span {
    display: block;
    height: 2px;
    width: 16px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.5s ease;
}

.header .hamburger-btn span:before,
.header .hamburger-btn span:after {
    content: '';
    position: absolute;
    height: 1.5px;
    width: 100%;
    left: 0;
    background-color: #ffffff;
}

.header .hamburger-btn span:before {
    top: -6px;
}
.header .hamburger-btn span:after {
    top: 6px;
}


.header .nav {
    padding: 0 15px;
}

.header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .nav ul li {
    display: inline-block;
    margin-left: 0px;
}

.header .nav ul li a {
    display: block;
    padding: 10px;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.5s ease;
}

.header .nav ul li a.active,
.header .nav ul li a:hover {
    font-weight: bold;
    font-size: 17px;
}

.header.fixed .nav ul li a {
    color: #555555;
}

.home-section {
    min-height: 100vh;
    position: relative;
}

.home-section .slide {
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.home-section .slide.active {
    opacity: 1;
    visibility: visible;
}

.home-section .slide:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.home-section .row {
    min-height: 100vh;
}

.home-section .home-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
}

.home-section .home-content p {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 15px;
}

.home-section .slide.active .home-content p {
    opacity: 0;
    animation: fadeInTop 1s ease forwards;
}

@keyframes fadeInTop {
    0% {
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

.home-section .home-content h1 {
    font-size: 70px;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
    font-family: 'Great Vibes', cursive;
}

.home-section .slide.active .home-content h1 {
    opacity: 0;
    animation: fadeInTop 1s ease forwards;
    animation-delay: 0.5s;
}

.home-section .home-content span {
    font-size: 20px;
    display: inline-block;
    border: 1px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    padding: 7px 30px;
    margin: 15px 0 0;
}

.home-section .slide.active .home-content span {
    opacity: 0;
    animation: fadeInTop 1s ease forwards;
    animation-delay: 1s;
}

.home-section .home-content #home_button {
    font-size: 20px;
    display: inline-block;
    border: 1px solid #ffffff;
    border-radius: 30px;
    background-color: transparent;
    color: #ffffff;
    padding: 7px 30px;
    margin: 10px ;
}

.home-section .home-content #home_button:hover {
    background-color: #fb839e;
    color: #ffffff;
    transform: scale(1.05);
}

/* couple section */
.couple-section {
    padding: 80px 0 0;

}

.couple-section .couple {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 60px;
    text-align: center;
    position: relative;
}

.couple-section .couple:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #cccccc;
}

.couple-section .couple i.fa-heart {
    position: absolute;
    left: -15px;
    width: 31px;
    background-color: #f3f2f1;
    padding: 5px;
    text-align: center;
    font-size: 18px;
    top: 30%;
}

.couple-section .couple img {
    max-width: 400px;
    width: 100%;
    border-radius: 50%;
    border: 10px solid red;
}

.couple-section .couple h3 {
    font-size: 40px;
    margin: 15px 0;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    letter-spacing: 2px;
}

/* story section */
.story-section {
    padding: 80px 0 80px;
}

.story-section .story-content {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}
.story-section .story-content:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #cccccc;
}

.story-section .story-item i {
    position: absolute;
    left: 50%;
    margin-left: -15px;
    width: 31px;
    text-align: center;
    background-color: #f3f2f1;
    padding: 5px;
    font-size: 18px;
}

.story-section .story-item {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 50px;
}

.story-section .story-item .story-img img {
    border-radius: 15px;
    border: 5px solid red;
}

.story-section .story-item:last-child {
    margin-bottom: 0;
}
.story-section .story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.story-section .story-item:nth-child(odd) .story-text {
    padding: 0 60px 0 15px;
    text-align: right;
}

.story-section .story-item:nth-child(odd) .story-img {
    padding: 0 15px 0 60px;
}

.story-section .story-item:nth-child(even) .story-text {
    padding: 0 15px 0 60px;
}

.story-section .story-item:nth-child(even) .story-img {
    padding: 0 60px 0 15px;
}

.story-section .story-text,
.story-section .story-img {
    flex: 0 0 50%;
    max-width: 50%;
}
.story-section .story-text h3{
    font-size: 25px;
    margin: 0 0 8px;
    color: #000000;
    font-weight: 500;
    text-transform: capitalize;
}
.story-section .story-text span.date{
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    margin: 0 0 15px 0;
    display: block;
    text-transform: capitalize;
}
.story-section .story-text p{
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: #555555;
    font-family: "Bitter", serif;
}

/* event section */
.event-section {
    padding: 80px 0 130px;
}

.event-section .section-title h2 {
    color: #ffffff;
}

.event-section .event-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

.event-section .event-item:nth-child(2) {
    transform: translateY(50px);
}
.event-section .event-item-inner {
    background-color: #ffffff;
    padding:  60px 45px 80px;
    text-align: center;
    box-shadow: 0 0 10px #888888;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.event-section .event-item-inner:before{
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-radius: 10px;
    z-index: -1;
}

.event-section .event-item-inner h3{
    color: #000000;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 15px;
    text-transform: capitalize;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
    display: inline-block;
}
.event-section .event-item-inner span{
    display: block;
    font-weight: 500;
    font-size: 18px;
}
.event-section .event-item-inner span.time {
    margin-bottom: 15px;
}

.event-section .event-item-inner p {
    font-size: 15px;
    line-height: 26px;
    color: #555555;
    margin: 0;
}

.event-section .event-item-inner img {
    position: absolute;
    width: 40px;
    left: 50%;
    bottom: 18px;
    z-index: -2;
    margin-left: -20px;
}

/* people section */
.gallery-section {
    padding: 80px 0 80px;
}

.gallery-section .gallery-item {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 2px;
}

.gallery-section .gallery-item-inner {
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-section .gallery-item-inner img {
    width: 100%;
    transform: scale(1.1);
    transition: all 0.5s ease;
    border: 5px solid #fb839e;
    border-radius: 10px;
}

.gallery-section .gallery-item-inner:hover img {
    transform: scale(1);
}

.gallery-popup {
    cursor: zoom-out;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.gallery-popup.open {
    display: flex;
    align-items: center;
}

.gallery-popup img.gp-img {
    width: auto;
    height: auto;
    max-width: 100%;
    padding: 40px 0;
    border: 5px solid #fb839e;
    border-radius: 5px;
}

.gallery-popup .gp-container {
    position: relative;
    cursor: auto;
}

.gallery-popup .gp-counter {
    display: block;
    height: 40px;
    color: #ffffff;
    font-size: 16px;
    position: absolute;
    left: 10px;
    top: 3px;
    line-height: 40px;
    font-weight: bold;
}

.gallery-popup .gp-close {
    display: block;
    height: 40px;
    width: 40px;
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 45px;
    overflow: hidden;
    cursor: pointer;
    cursor: zoom-out;
}

.gallery-popup .gp-controls {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-popup .gp-controls .prev,
.gallery-popup .gp-controls .next {
    display: inline-block;
    margin: 0 10px;
}

.gallery-popup .gp-controls .prev i,
.gallery-popup .gp-controls .next i {
    color: #ffffff;
    font-size: 20px;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.gallery-popup .gp-controls .prev:hover i,
.gallery-popup .gp-controls .next:hover i {
    background-color: rgba(0,0,0,0.9);
}

/* wedding-box section */
.wedding-box-section {
    padding: 80px 0 130px;
}

.wedding-box-section .section-title h2 {
    color: #000000;
}

.wedding-box-section .wedding-box-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
}

.wedding-box-section .wedding-box-item-inner {
    background-color: #ffffff;
    padding:  50px 45px 50px;
    text-align: center;
    box-shadow: 0 0 10px #888888;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.wedding-box-section .wedding-box-item-inner:before{
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    z-index: -1;
    border-radius: 10px;
}

.wedding-box-section .wedding-box-item-inner h3{
    color: #000000;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 15px;
    text-transform: capitalize;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
    display: inline-block;
}

.wedding-box-section .wedding-box-item-inner p {
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    margin: 0;
}

.wedding-box-section .wedding-box-item-inner img {
    position: inherit;
    padding:  10px 0 10px;
    width: 150px;
    z-index: -2;
}

.footer {
    padding: 150px 0 150px;
}

.footer .footer-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.footer .footer-content .couple-name {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer .footer-content .couple-name img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(100deg);
}

.footer .footer-content .couple-name h2 {
    font-size: 40px;
    font-family: "Great Vibes", cursive;
    color: #000000;
    margin: 0;
    font-weight: normal;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.footer .footer-content .couple-name h2 span {
    font-family: "Great Vibes", cursive;
    font-weight: normal;
    display: block;
}

.footer .footer-content p {
    font-size: 40px;
    font-family: "Great Vibes", cursive;
    color: #000000;
    margin: 0;
    font-weight: normal;
    text-align: center;
}
.footer .footer-content .flex {
    font-size: 15px;
    color: #000000;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

p.copyright-text {
    text-align: center;
    font-size: 15px;
    padding: 0 15px;
    color: #555555;
    padding: 20px 0;
    border-top: 1px solid #cccccc;
}

#event_button {
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 12px;
  font-weight: 600;
  outline: 0;
  margin-top: 10px;
  padding: 8px 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

#event_button:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 56px;
  content: "";
  height: 100%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

#event_button:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

#language_icon {
    position: fixed;
    left: 15px;
    bottom: 20px;
    width: 40px;
    height: 30px;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

#volume_mute, #volume_up {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    z-index: 1;
    cursor: pointer;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 2px #444444;
    text-shadow: 0 0 1px #444444;
}

#volume_mute i, #volume_up i {
    color: #ffffff
}

#volume_up::before,
#volume_up::after {
    top: 0;
    left: 0;
    border-radius: 50%;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

#volume_up::before,
#volume_up::after {
    animation: ripple 3s infinite;
}

#volume_up::before {
    animation-delay: 0.9s;
}
#volume_up::after {
    animation-delay: 0.5s;
}

.flag-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Khi ở mobile (dưới 768px) thu nhỏ cờ */
@media (max-width: 768px) {
    .flag-icon {
        width: 14px;
        vertical-align: middle;
        margin-right: 6px;
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
