img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Reset cơ bản */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;  /* Ngăn tràn ngang */
  background-color: #fff;
  font-family: sans-serif;
}

/* Container chính */
.container {
  width: 100%;
  max-width: 440px;      /* Giới hạn tối đa là 440px */
  margin: 0 auto;         /* Canh giữa khi trên màn lớn */
  padding: 0px !important;/* Ví dụ màu nền */
}
.slide_damcuoi {
    position: relative;
    height: 100vh;
}

.info-slide {
    text-align: center;
    position: absolute;
    top: 44%;
    width: 100%;
    color: #fff;
}

.name-slide.opacity-0 {
    font-family: Roboto;
    font-weight: 300;
    font-size: 15px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
}

.name-slide.opacity-0 {}

.name-slide.name_bg.opacity-0 {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    margin: 10px;
    font-family: "Adamina", serif;
}

.desc-slide.text-split-3.opacity-0 {
    font-weight: 300;
    font-size: 13px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
}
.schedule {
  text-align: center;
  background: rgba(244, 241, 236, 1);
  padding-top: 30px;
  padding-bottom: 35px;
  padding-left: 30px;
  padding-right: 30px;
}

.schedule h2 {
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
}

.schedule .date {
  margin-bottom: 24px;
  color: #666;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
}

.event {
  margin-bottom: 24px;
}

.time {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: unset;
  gap: 10px;
  margin-bottom: 8px;
  /* padding-left: 20%; */
  font-family: "Afacad", sans-serif;
  padding-left: 21%;
}

.line {
  width: 30px;
  height: 1px;
  background-color: #000;
  display: inline-block;
}

.desc {
  color: #444;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: Italic;
  font-size: 15px;
  text-align: center;
  line-height: 20px;
}
.location {
  background: url('your-image.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  width: 100%;
}

.overlay {
  background: url(../images/bgmap.png)no-repeat; /* lớp phủ tối */
  padding: 24px;
  width: 100%;
  /* max-width: 400px; */
  background-size: cover;
}

.location h2 {
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
}

.divider {
  width: 2px;
  height: 30px;
  background: white;
  margin: 0 auto 12px auto;
}

.address {
  margin-bottom: 16px;
  font-family: Roboto;
  font-weight: 400;
  font-style: Italic;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

/* Nút Google Maps */
.map-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
  font-family: Adamina;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
}

.map-btn:hover {
  background: #f1f1f1;
}

.map-btn img {
  height: 20px;
  margin-right: 8px;
}

.survey-form {
  /* max-width: 400px; */
  margin: 0 auto;
  background: #f3eee7;
  border-radius: 8px;
  padding: 34px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.survey-form h2 {
  text-align: center;
  margin-bottom: 10px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 35px;
  \: NONE;
  line-height: 100%;
}

.survey-form p {
  text-align: center;
  margin-bottom: 20px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
}

.radio-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.radio-option {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
  font-family: Afacad;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 25px;
}

.radio-option input[type="radio"] {
  display: none;
}

.custom-radio {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  /* border: 2px solid #000; */
  border-radius: 50%;
  background-color: #fff;
}

.radio-option input[type="radio"]:checked + .custom-radio::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
}

.input-label {
  display: block;
  margin-bottom: 6px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
}

.survey-form input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
}

.survey-form button {
  width: 47%;
  padding: 12px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  justify-content: center;
  margin: auto;
}

.survey-form button:hover {
  background-color: #444;
}


.dress-code {
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  background-color: #fff;
  color: #222;
}

.dress-code h2 {
  margin-bottom: 10px;
  font-family: Afacad;
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
}

.dress-code p {
  color: #555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: Afacad;
  font-weight: 400;
  font-size: 15px;
  line-height: 115.99999999999999%;
  text-align: center;
}

.color-guide {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.color-box {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: start;
}

.swatch {
  width: 141px;
  height: 32px;
  border-radius: 0px;
  margin-bottom: 8px;
}

/* Outfits in 2 columns */
.outfit-2col {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.outfit-column {
  flex: 1;
  =: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outfit-column img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  max-width: 900px;
  width: 100%;
}

.gallery .item {
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 8px;
  aspect-ratio: 3/4; /* Giữ tỷ lệ khung ảnh đứng */
}

.gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.color-box span {
    font-family: Afacad;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: start;
    display: flex;
    justify-content: start;
    color: rgba(201, 201, 201, 1);
}
button.newsletter-button input {
    background: none;
    border: none;
    color: #fff;
} 
.sun-masonry{-moz-column-count: 3;column-count: 2;-moz-column-gap: 10px;column-gap: 5px;}
.sun-masonry .album-in-detail {page-break-inside: avoid;-moz-column-break-inside: avoid;break-inside: avoid;display: block;margin-bottom: 5px !important;cursor: pointer;}

.sun-masonry-in{margin-bottom: 30px;-moz-column-count: 2;column-count: 2;-moz-column-gap: 15px;column-gap: 15px;}
.sun-masonry-in .item_serv {display: unset;width: unset;page-break-inside: avoid;-moz-column-break-inside: avoid;break-inside: avoid;margin-bottom: 15px;display: block;}

.album_anhcuoi {
    padding: 36px;
    text-align: center;
    background: rgba(244, 241, 236, 1);
}

.album_anhcuoi h2 {
    font-family: Afacad;
    font-weight: 400;
    font-size: 35px;
    line-height: 100%;
    margin-bottom: 20px;
}
.qr_cuoi {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 50px;
    background: url(../images/bgqr.png)no-repeat;
    background-size: cover;
}

.qr_cuoi h2 {
    font-family: Afacad;
    font-weight: 400;
    font-style: Regular;
    font-size: 35px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.desc_qr {
    font-family: Afacad;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    leading-trim: NONE;
    line-height: 118%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}
.maqr {
    text-align: center;
    display: flex;
    justify-content: center;
}

.maqr img {
    padding: 5px;
    background: #fff;
    border-radius: 5px;
}
.hero {
    width: 100%;
    height: 100vh; /* full màn hình */
    overflow: hidden;
}

.slideshow-image {
    display: block;
    width: 100%;
    height: 100%;
}

.slideshow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* cắt ảnh cho vừa khung */
    display: block;
}
.damcuoiquy {
    height: 100%;
    height: 100vh;
}

.slide-text.slick.in-page {
    height: 100vh;
}

.slick-list {
    height: 100vh !important;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    height: 100vh;
}
