/* PREMIUM THEME CSS */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa8c2c;
  --dark: #0f1115;
  --darker: #0a0b0d;
  --light: #f9f9f9;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.serif {
  font-family: "Cormorant Garamond", serif;
}

/* =========================================
   PREMIUM HERO SECTION
========================================= */
.premium-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Fallback */
  height: 100dvh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  background-image: url("../assets/hero-bgg.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) grayscale(30%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 17, 21, 0.2) 0%,
    var(--darker) 100%
  );
  z-index: 2;
}

.glass-card {
  position: relative;
  z-index: 10;
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 90vw;
  width: 480px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

.premium-logo {
  width: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.couple-name {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 10px 0;
  background: linear-gradient(45deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.date-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.date-container .line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.date {
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 300;
  color: #e0e0e0;
}

.guest-box {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

.guest-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 10px;
}

.guest-name {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 5px;
}

.guest-disclaimer {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

/* Premium Button Effect */
.premium-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 35px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.premium-btn span,
.premium-btn i {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.premium-btn:hover span,
.premium-btn:hover i {
  color: var(--darker);
  font-weight: 600;
}

/* =========================================
   GENERIC SECTIONS (Adapted to Dark Theme)
========================================= */
.section-premium {
  padding: 100px 0;
  background-color: var(--darker);
}

.section-title {
  color: var(--gold);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  letter-spacing: 3px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .glass-card {
    padding: 40px 20px;
    width: 100%;
    border-radius: 15px;
  }
  .couple-name {
    font-size: 2.5rem;
  }
  .date-container .line {
    width: 30px;
  }
  .date {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }
  .guest-name {
    font-size: 1.6rem;
  }
}

/* =========================================
   ADDITIONAL STYLES FOR PREMIUM THEME
========================================= */

/* Container Responsive */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }
}

/* Couple Images */
.premium-img {
  border: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  width: 160px;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.premium-img:hover {
  transform: scale(1.05);
}

/* Couple Section Layout */
.couple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.couple .col-lg-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.couple .row {
  align-items: center;
  margin: 0;
  width: 100%;
  justify-content: center;
}

.couple .row.flex-column {
  flex-direction: column;
}

.description {
  padding: 20px 0;
  text-align: center;
}

.description .nama {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.description .ket {
  color: #ccc;
  font-size: 0.95rem;
  margin: 4px 0;
  line-height: 1.4;
}

/* Heart Icon */
.heart-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 2rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.heart-icon i,
.bi-heart,
.bi-heart-fill,
.divider .icon i {
  transform: rotate(0deg) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider .icon {
  margin: 0 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Banner Section */
.banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  overflow: hidden;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.banner h2 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.banner p {
  text-align: center;
  color: #ddd;
  font-style: italic;
  margin-top: 20px;
}

/* Info Section */
.info .ket-det {
  color: var(--gold);
  font-weight: bold;
}

/* Card Events */
.card-event {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-event-img {
  height: 200px;
  overflow: hidden;
}

.card-event-img iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.card-event-content {
  padding: 25px;
}

.card-event h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

.divider-card {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.desc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.desc i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Gallery */
.gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  aspect-ratio: 3 / 4;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Greetings */
.greeting-form-container,
.greeting-list-container {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 30px;
}

.form-title,
.list-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.greeting-list {
  max-height: 400px;
  overflow-y: auto;
}

.greeting-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.greeting-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.greeting-item-message {
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1.5;
}

.greeting-item-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-size: 0.8rem;
}

.empty-state {
  text-align: center;
  color: #888;
  padding: 40px 20px;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

/* Gifts */
.gift-bank-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.gift-bank-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.bank-name {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 5px;
}

.bank-rek,
.bank-an {
  color: #ddd;
  margin: 2px 0;
}

.qris-container {
  gap: 20px !important;
}

.qris-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.qris-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
}

/* End Section */
.end-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--darker) 0%,
    var(--dark) 50%,
    var(--darker) 100%
  );
  text-align: center;
  position: relative;
}

.end-section-ornament {
  width: 100px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 30px;
}

.end-section-ornament.bottom {
  margin: 30px auto 0;
}

.end-section-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.end-section-subtitle {
  color: #ddd;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.end-section-divider {
  width: 200px;
  height: 1px;
  background: var(--gold);
  margin: 30px auto;
}

.end-section-text {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #ccc;
  line-height: 1.6;
}

.end-section-name {
  color: #ddd;
  margin: 20px 0;
}

.end-section-name-title {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0;
}

.end-section-closing {
  color: #888;
  font-style: italic;
}

/* Footer */
.footer-container {
  background: var(--darker);
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand h3 {
  color: var(--gold);
  font-size: 2rem;
  margin: 0;
}

.footer-brand p {
  color: #888;
  margin: 5px 0 0;
}

.footer-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.footer-info p {
  color: #ddd;
  margin: 0;
  text-align: center;
}

.footer-quote {
  font-style: italic;
  color: #888 !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  margin-top: 20px;
}

.footer-bottom p {
  color: #888;
  margin: 0;
}

/* Floating Navbar */
.floating-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-navbar.show {
  opacity: 1;
  visibility: visible;
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-brand-floating {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  gap: 20px;
}

.nav-item {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--gold);
}

.guest-name-navbar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
}

/* Music Button */
.floating-music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-music-btn.show {
  opacity: 1;
  visibility: visible;
}

.music-btn {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.music-btn:hover {
  transform: scale(1.1);
  border-color: var(--gold);
}

.floating-music-btn.playing .music-btn {
}

/* Countdown Boxes */
.box {
  padding: 20px;
  min-width: 100px;
  background: var(--glass) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .floating-navbar {
    padding: 8px 15px;
  }

  .navbar-container {
    gap: 10px;
    justify-content: space-between;
    width: 100%;
  }

  .guest-name-navbar {
    margin-left: auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .banner h2 {
    font-size: 2rem;
  }

  .end-section-title {
    font-size: 2rem;
  }

  .end-section-name-title {
    font-size: 2rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
  }

  .footer-divider {
    display: none;
  }

  /* Couple Section Mobile */
  .couple {
    flex-direction: column !important;
    gap: 30px;
    max-width: 100%;
  }

  .couple .col-lg-5 {
    max-width: 100%;
    flex: none;
  }

  .couple .row {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .couple .description {
    text-align: center !important;
    padding: 15px 0;
  }

  .premium-img {
    width: 140px !important;
    height: 140px !important;
  }

  .description .nama {
    font-size: 1.5rem;
  }

  .description .ket {
    font-size: 0.8rem;
  }

  .heart-icon {
    position: static !important;
    transform: none !important;
    margin: 20px 0;
  }

  /* Card Events Mobile */
  .card-event {
    margin-bottom: 30px;
  }

  .card-event-content {
    padding: 20px;
  }

  .card-event h4 {
    font-size: 1.3rem;
  }

  /* Gallery Mobile */
  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item img {
    object-position: center;
  }

  /* Greetings Mobile */
  .greeting-form-container,
  .greeting-list-container {
    padding: 20px;
  }

  .greeting-list {
    max-height: 300px;
  }

  /* Form Controls Mobile */
  .form-control {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .btn-submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Gifts Mobile */
  .gift-bank-box {
    gap: 10px;
  }

  .qris-container {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .qris-item {
    padding: 10px;
  }

  .qris-img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .glass-card {
    padding: 40px 20px;
    width: 100%;
    border-radius: 15px;
  }

  .couple-name {
    font-size: 3rem;
  }

  .date-container .line {
    width: 30px;
  }

  .date {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .guest-name {
    font-size: 1.6rem;
  }

  /* Hero Mobile */
  .premium-hero {
    padding: 10px;
  }

  /* Section Spacing Mobile */
  .section-premium {
    padding: 60px 0;
  }

  /* Banner Mobile */
  .banner {
    padding: 60px 0;
  }

  .banner h2 {
    font-size: 1.5rem;
    padding: 0 20px;
  }

  /* Info Section Mobile */
  .info .row.justify-content-center {
    gap: 20px;
  }

  /* Card Events Mobile */
  .card-event-img {
    height: 150px;
  }

  .card-event-content {
    padding: 15px;
  }

  .card-event h4 {
    font-size: 1.2rem;
  }

  .desc p {
    font-size: 1rem;
  }

  /* Couple Section 576px */
  .premium-img {
    width: 130px !important;
    height: 130px !important;
  }

  .description .nama {
    font-size: 1.4rem;
  }

  .description .ket {
    font-size: 0.85rem;
  }

  /* Gallery Mobile */
  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item img {
    object-position: center;
  }

  /* Greetings Mobile */
  .greeting-form-container,
  .greeting-list-container {
    padding: 15px;
  }

  .form-title,
  .list-title {
    font-size: 1.1rem;
  }

  .greeting-item {
    padding: 12px;
  }

  .greeting-item-name {
    font-size: 0.9rem;
  }

  .greeting-item-message {
    font-size: 0.9rem;
  }

  /* Form Controls Mobile */
  .form-control {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .btn-submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Gifts Mobile */
  .gift-bank-item {
    padding: 12px;
  }

  .bank-name {
    font-size: 0.9rem;
  }

  .bank-rek,
  .bank-an {
    font-size: 0.8rem;
  }

  .qris-img {
    width: 100px;
    height: 100px;
  }

  /* End Section Mobile */
  .end-section {
    padding: 60px 0;
  }

  .end-section-title {
    font-size: 1.8rem;
  }

  .end-section-subtitle {
    font-size: 1rem;
  }

  .end-section-text {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .end-section-name-title {
    font-size: 1.8rem;
  }

  /* Footer Mobile */
  .footer-container {
    padding: 30px 0;
  }

  .footer-main {
    padding: 0 15px;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }

  /* Floating Elements Mobile */
  .floating-music-btn {
    bottom: 15px;
    right: 15px;
  }

  .music-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .floating-navbar {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
  }

  /* Countdown Mobile */
  .box {
    padding: 12px 8px !important;
    min-width: 70px !important;
  }

  .box span:first-child {
    font-size: 1.5rem !important;
  }

  .box span:last-child {
    font-size: 0.95rem !important;
  }

  @media (max-width: 576px) {
    .box {
      padding: 10px 8px !important;
      min-width: 60px !important;
    }

    .box span:first-child {
      font-size: 1.3rem !important;
    }

    .box span:last-child {
      font-size: 0.85rem !important;
    }
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  .couple-name {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner h2 {
    font-size: 1.3rem;
  }

  .end-section-title {
    font-size: 1.5rem;
  }

  .end-section-name-title {
    font-size: 1.5rem;
  }

  .greeting-form-container,
  .greeting-list-container {
    margin-bottom: 20px;
  }

  .gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item img {
    height: 100%;
    object-position: center;
  }

  /* Additional Mobile Fixes */
  .description h3 {
    font-size: 1.2rem;
  }

  .description p {
    font-size: 0.9rem;
  }

  .divider-date {
    margin: 20px 0;
  }

  .ket-det {
    font-size: 1.1rem;
  }

  /* Couple Section 480px */
  .premium-img {
    width: 110px !important;
    height: 110px !important;
  }

  .description .nama {
    font-size: 1.2rem;
  }

  .description .ket {
    font-size: 0.8rem;
  }

  /* Hero Section Extra Small */
  .premium-hero {
    height: 100vh;
    padding: 5px;
  }

  .glass-card {
    padding: 30px 15px;
    max-width: 95vw;
  }

  .premium-logo {
    width: 50px;
  }

  .subtitle {
    font-size: 0.8rem;
  }

  .couple-name {
    font-size: 2.2rem;
  }

  .date {
    font-size: 0.9rem;
  }

  .guest-label {
    font-size: 0.6rem;
  }

  .guest-name {
    font-size: 1.3rem;
  }

  .guest-disclaimer {
    font-size: 0.6rem;
  }

  .premium-btn {
    padding: 12px 25px;
    font-size: 0.8rem;
  }
}
