:root {
      --primary: #7c2b4b;
      --secondary: #f3eee7;
      --light: #ffffff;
      --text: #4a4a4a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--secondary);
      color: var(--text);
    }

    h1, h2, h3 {
      /* font-family: 'Playfair Display', serif; */
    }

    /* HEADER */
    .header {
      background: var(--primary);
      color: #fff;
      padding: 15px 0px;
      font-size: 14px;
    }
    .header .title{
      border-top: 1px solid #fff;
      padding: 12px 20px;
      border-bottom: 1px solid #fff;
    }
    .header .title a{
      color: #fff;
      text-decoration: none;
    }

    /* HERO */
    .hero {
      text-align: center;
      padding: 100px 20px;
      background: var(--secondary);
    }

    .hero h1 {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 30px;
    }

    .hero .nextLink {
      padding: 12px 24px;
      border: 1px solid var(--primary);
      background: transparent;
      color: var(--primary);
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .hero .nextLink:hover {
      background: var(--primary);
      color: #fff;
    }

    /* COUNTDOWN SECTION */
    .countdown {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .countdown h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }

    .event {
      background: #e6cfd6;
      color: var(--primary);
      margin: 20px auto;
      padding: 20px;
      max-width: 700px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .event h3{
        margin-bottom: 10px;
    }
    .event h3, .event p{
        text-align: left
    }
    .event-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    /* LOVE SECTION */
    .love-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    .love-text {
      padding: 60px;
      font-size: 22px;
      color: var(--primary);
    }

    /* MESSAGES */
    /* .messages {
      background: var(--primary);
      padding: 40px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
    }

    .card {
      background: var(--secondary);
      padding: 15px;
      font-size: 14px;
      border-radius: 6px;
    } */

    /* FOOTER */
    .footer {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 40px 20px;
      font-size: 14px;
    }


    @media(max-width: 768px) {
      .love-section {
        grid-template-columns: 1fr;
      }

      .love-text {
        padding: 30px;
      }
    }

    .bgWraper {
      position: relative;
      margin: 0 auto; /* Center it */
      height: 580px;
    }
    .bgWraper img{
      width:100%;
      height: 580px;
      object-fit: cover;
      object-position: 0 -350px
    }

    .bgWraper .content {
      position: absolute;
      bottom: 0;
      background: rgb(0, 0, 0);
      background: rgba(0, 0, 0, 0.7);
      color: #f1f1f1;
      width: 100%;
      padding: 20px;
      height: 100%;
      text-align: center;
      padding-top: 180px
    }
    .bgWraper .content h1{
      font-size: 60px;
      margin-bottom: 20px;
      font-weight: 900;
    }
    .bgWraper .content p{
      font-size: 20px;
    }


    .slider {
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
      /* background: #fff; */
    }
    .slide-track {
      display: flex;
      width: max-content;
      animation: scroll 20s linear infinite;
    }
    .slide {
      min-width: 250px;
      margin-right: 20px;
      flex-shrink: 0;
    }
    .slide img {
      width: 100%;
      height: 380px;
      /* object-fit: cover; */
      border-radius: 10px;
    }

    /* Animation */
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Pause on hover */
    .slider:hover .slide-track {
      animation-play-state: paused;
    }


    .containerItem {
        overflow: hidden;
        white-space: nowrap;
        background: var(--primary);;
        padding: 20px 0;
        position: relative;
        padding-top: 80px;
    }
    .scroll-content {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll-left 30s linear infinite;
    }
    .itemList {
        width: 300px;
        height: 200px;
        background: #fff;
        color: 000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        border-radius: 8px;
        padding: 0 10px;
        text-align: center;
        white-space: normal
    }
    .containerItem2 {
      overflow: hidden;
      white-space: nowrap;
      background: var(--primary);;
      padding: 20px 0;
      position: relative;
    }
    .scroll-content2 {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll-left 30s linear infinite;
    }
    .itemList2 {
        width: 300px;
        height: 200px;
        background: #fff;
        color: 000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        border-radius: 8px;
        padding: 0 10px;
        text-align: center;
        white-space: normal
    }
    /* Animation */
    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* Pause on hover */
    .containerItem:hover .scroll-content {
      animation-play-state: paused;
    }
    .containerItem2:hover .scroll-content2 {
      animation-play-state: paused;
    }


    .floating-box {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);

      width: 300px;
      padding: 10px;
      background: #fff;
      color: #fff;
      text-align: center;
      border-radius: 10px;
      box-shadow: .2px .4px .5px rgba(161,161,161,.36),.5px 1.3px 1.6px -.8px rgba(161,161,161,.36),1.3px 3.4px 4.1px -1.7px rgba(161,161,161,.36),3.1px 8.2px 9.9px -2.5px rgba(161,161,161,.36);
      /* box-shadow: 0 4px 10px rgba(0,0,0,0.3); */

      z-index: 1000;
    }

.actionBtn{
    background: #fff;
    border-color: #7c2b4b;
    border-width: 1px;
    /* width: 80px; */
    /* height: 100px; */
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}
.actionBtn img{
    width: 30px;
}




/* Layout */
.formContainer {
  /* display: flex; */
  height: 100vh;
}

/* LEFT SIDE */
.leftForm {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('bg-left.png') no-repeat center/cover;
}

.card img {
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RIGHT SIDE */
.rightForm {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rightForm h1 {
  font-size: 26px;
  letter-spacing: 2px;
  text-align: center;
}

.subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
}

/* FORM */
.formGuest {
  max-width: 600px;
  margin: auto;
}

.labelForm {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  text-align: left;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.error {
  color: red;
  font-size: 12px;
}

/* Phone Input */
.phone {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px;
}

.phone span {
  margin-right: 8px;
}

.phone input {
  border: none;
  outline: none;
}

/* Button */
.submitbutton {
  /* width: 100%; */
  padding: 12px;
  margin-top: 25px;
  background: var(--primary);
  border: 2px solid #d4a373;
  color: #d4a373;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.submitbutton:hover {
  background: #d4a373;
  color: white;
}
.cancelbutton {
  /* width: 100%; */
  padding: 12px;
  margin-top: 25px;
  background: white;
  border: 2px solid #d4a373;
  color: #d4a373;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.cancelbutton:hover {
  background: #d4a373;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .leftForm {
    display: none;
  }

  .rightForm {
    padding: 30px;
  }
}
@media (max-width: 995px) {
    .bgWraper img{
      object-position: 0 -150px
    }
}
@media (max-width: 500px) {
    .bgWraper img{
      height: 400px;
        object-position: 0 -80px;
    }
    .bgWraper {
        height: 400px;
    }
    .bgWraper .content h1 {
        font-size: 35px;
    }
    .bgWraper .content p{
        font-size: 15px;
    }
    .bgWraper .content {
        padding-top: 130px;
    }
}
@media (max-width: 575px) {
  .removeAt575{
    display: none;
  }
}
