/* ==========================================================
   PREMIUM WEDDING INVITATION
   STYLE.CSS - RESPONSE 1
   ========================================================== */

/* =========================
   ROOT VARIABLES
   ========================= */

:root {
  --bg: #1b0712;
  --bg-light: #2d1020;
  --bg-dark: #090307;

  --rose: #f3a6b3;
  --rose-soft: #ffd1dc;
  --rose-deep: #c64b7a;
  --champagne: #f8d98c;
  --ivory: #fff7ed;

  --gold: #f5b26f;
  --gold-soft: #ffe0b8;

  --white: #fff8f2;
  --text: rgba(255, 248, 242, 0.94);

  --glass: rgba(255, 248, 242, 0.075);
  --border: rgba(255, 178, 190, 0.24);

  --title: "Marcellus", serif;
  --body: "Manrope", sans-serif;
}

/* =========================
   RESET
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
}

body.loaded {
  opacity: 1;
}

/* =========================
   BACKGROUND
   ========================= */

.background-gradient {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 196, 178, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 85% 88%,
      rgba(248, 217, 140, 0.11),
      transparent 38%
    ),
    radial-gradient(
      circle at 50% 45%,
      rgba(243, 166, 179, 0.08),
      transparent 46%
    ),
    linear-gradient(
      135deg,
      var(--bg-dark) 0%,
      var(--bg) 28%,
      var(--rose-deep) 55%,
      var(--bg-light) 76%,
      var(--bg-dark) 100%
    );
}

.background-gradient::before {
  content: "";
  position: absolute;
  inset: -35%;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(255, 209, 220, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 78% 72%,
      rgba(248, 217, 140, 0.13),
      transparent 34%
    );

  animation: auroraMove 18s ease-in-out infinite alternate;
}

/* =========================
   STARS
   ========================= */

#stars {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(255, 248, 242, 0.8) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 248, 242, 0.4) 1px, transparent 1px);

  background-size:
    120px 120px,
    180px 180px;

  background-position:
    0 0,
    60px 70px;

  opacity: 0.3;
}

/* =========================
   FLOATING ORBS
   ========================= */

.floating-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.08;
  z-index: -3;
}

.orb-1 {
  width: 220px;
  height: 220px;
  top: 8%;
  left: -80px;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  animation: floatOrb1 14s ease-in-out infinite;
}

.orb-2 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  right: -60px;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  animation: floatOrb2 16s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 20px);
  }
}

@keyframes floatOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -20px);
  }
}

/* =========================
   HIDDEN
   ========================= */

.hidden {
  display: none !important;
}

/* =========================
   INTRO SCREEN
   ========================= */

#introScreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.intro-content {
  max-width: 520px;
  animation: introFade 1.2s ease;
}

@keyframes introFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crescent {
  font-size: 90px;
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;

  text-shadow:
    0 0 18px rgba(255, 184, 165, 0.35),
    0 0 35px rgba(255, 184, 165, 0.15);

  animation: moonFloat 4s ease-in-out infinite;
}

@keyframes moonFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bismillah {
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold-soft),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.7rem;
  margin-bottom: 18px;
  line-height: 1.8;
  font-family: var(--title);
}

.intro-sub {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 35px;
}

#beginButton {
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose)
  );

  color: #1a060d;
  border: none;
  border-radius: 40px;

  padding: 15px 40px;

  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 2px;

  cursor: pointer;
  transition: 0.35s;
}

#beginButton:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 184, 165, 0.25);
}

/* =========================
   ENVELOPE
   ========================= */

#envelopeSection {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-wrapper {
  perspective: 1200px;
}

.envelope {
  width: 320px;
  height: 220px;
  position: relative;
  cursor: pointer;

  animation: envelopeFloat 3s ease-in-out infinite;
}

@keyframes envelopeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.envelope-body {
  position: absolute;
  inset: 0;

  background: #fff8f2;
  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.envelope-top {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 120px;

  background: linear-gradient(
    135deg,
    var(--rose-soft),
    var(--champagne),
    var(--rose)
  );

  clip-path: polygon(0 0, 100% 0, 50% 100%);

  transform-origin: top;
  transition: 0.8s;
  z-index: 5;
}

.envelope.open .envelope-top {
  transform: rotateX(180deg);
}

.seal {
  width: 72px;
  height: 72px;

  margin: 62px auto 15px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose)
  );

  color: #2a0b14;
  font-size: 2rem;
}

.tap-text {
  text-align: center;
  color: #2a0b14;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* ==========================================================
   STYLE.CSS - RESPONSE 2
   MAIN INVITATION
   ========================================================== */

/* =========================
   MAIN CONTAINER
   ========================= */

#invitation {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 520px;

  margin: 0 auto;

  padding: 70px 24px 100px;

  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(32, 8, 22, 0.96),
    rgba(20, 4, 14, 0.98)
  );

  border-radius: 36px;

  border: 1px solid rgba(255, 220, 170, 0.08);

  box-shadow:
    0 0 0 1px rgba(255, 220, 170, 0.04),
    0 25px 70px rgba(0, 0, 0, 0.45);
}

#invitation::before {
  content: "";

  position: absolute;

  inset: 8px;

  border-radius: 28px;

  border: 1px solid rgba(255, 220, 170, 0.28);

  box-shadow:
    inset 0 0 8px rgba(255, 220, 170, 0.08),
    0 0 10px rgba(255, 220, 170, 0.08);

  pointer-events: none;

  z-index: 1;
}


/* =========================
   TOP HEADER
   ========================= */

.top-pattern {
  width: 140px;
  height: 3px;

  margin: 10px auto 28px;

  border-radius: 20px;

  background: linear-gradient(
    to right,
    transparent,
    var(--champagne),
    var(--rose-soft),
    var(--champagne),
    transparent
  );
  background-size: 220% 100%;

  box-shadow:
    0 0 12px rgba(255, 184, 165, 0.35),
    0 0 22px rgba(255, 184, 165, 0.15);

  animation:
    topGlow 3.5s ease-in-out infinite,
    shimmer 4s linear infinite;
}

@keyframes topGlow {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1.15);
    opacity: 1;
  }
}

/* =========================
   HEADER ORNAMENT
   ========================= */

.header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin: 15px auto 40px;

  animation: headerFloat 5s ease-in-out infinite;
}

.orn-side {
  color: rgba(255, 184, 165, 0.45);
  font-size: 0.95rem;
}

.orn-line {
  width: 80px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 184, 165, 0.75),
    transparent
  );
}

.orn-flower {
  font-size: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 0 12px rgba(255, 184, 165, 0.35);

  animation: flowerGlow 3s ease-in-out infinite;
}

@keyframes headerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes flowerGlow {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* =========================
   WELCOME TEXT
   ========================= */

.welcome-text {
  max-width: 520px;
  margin: 0 auto 35px;

  text-align: center;

  font-size: 1.02rem;
  font-weight: 300;
  line-height: 2;

  color: var(--text);

  letter-spacing: 0.5px;
}

.welcome-small {
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold-soft),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
}

/* =========================
   COUPLE NAMES
   ========================= */

/* ==========================================================
   PREMIUM COUPLE CARD
========================================================== */

.couple-section {
  margin: 50px auto;
  max-width: 900px;
  padding: 0 20px;
}

.couple-card {
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 216, 170, 0.15);
  border-radius: 34px;

  padding: 45px 35px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.couple-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 15%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 85%
  );

  transform: translateX(-120%);
  animation: cardLight 8s infinite;
}

.card-header {
  text-align: center;

  margin-bottom: 38px;
}

.card-header span {
  display: inline-block;

  color: var(--champagne);

  font-size: 0.82rem;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.couple-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}

.person {
  flex: 1;

  text-align: center;
}

.photo-frame {
  width: 180px;
  height: 230px;

  margin: auto;

  padding: 5px;

  border-radius: 90px 90px 22px 22px;

  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );

  box-shadow: 0 0 30px rgba(245, 178, 111, 0.25);

  transition: 0.4s;
}

.photo-frame:hover {
  transform: translateY(-6px);
}

.photo-frame img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 85px 85px 18px 18px;

  display: block;
}

.role {
  display: block;

  margin-top: 22px;

  color: var(--champagne);

  font-size: 0.72rem;

  letter-spacing: 4px;

  text-transform: uppercase;
}

.person h2 {
  margin-top: 12px;

  font-size: 2rem;

  font-family: var(--title);

  font-weight: 400;

  color: white;
}

.parents {
  margin-top: 12px;

  font-size: 0.88rem;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.72);
}

.couple-center {
  display: flex;

  align-items: center;

  justify-content: center;
}

.ornament {
  width: 85px;
  height: 85px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2rem;

  color: #2b0913;

  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );

  box-shadow: 0 0 25px rgba(245, 178, 111, 0.35);

  animation: pulseOrnament 3s infinite;
}

.bottom-line {
  width: 220px;
  height: 2px;

  margin: 35px auto 0;

  background: linear-gradient(
    to right,
    transparent,
    var(--champagne),
    transparent
  );
}

@keyframes pulseOrnament {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes cardLight {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(150%);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .couple-card {
    padding: 25px 18px;
  }

  .card-header {
    margin-bottom: 22px;
  }

  .card-header span {
    font-size: 0.7rem;

    letter-spacing: 2px;
  }

  .couple-content {
    gap: 10px;

    align-items: flex-start;
  }

  .photo-frame {
    width: 105px;
    height: 135px;

    border-radius: 55px 55px 15px 15px;
  }

  .photo-frame img {
    border-radius: 50px 50px 12px 12px;
  }

  .person h2 {
    font-size: 1.1rem;

    margin-top: 8px;
  }

  .role {
    font-size: 0.6rem;

    letter-spacing: 2px;

    margin-top: 10px;
  }

  .parents {
    display: none;
  }

  .ornament {
    width: 48px;
    height: 48px;

    font-size: 1.15rem;
  }

  .bottom-line {
    width: 140px;

    margin-top: 22px;
  }
}

.divider {
  margin: 35px 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--champagne),
    var(--rose-soft),
    var(--champagne),
    transparent
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 3px;
  font-size: 1rem;
}

/* ==========================================================
   STYLE.CSS - RESPONSE 3
   MESSAGE • BUTTONS • FOOTER • EFFECTS • MOBILE
   ========================================================== */

/* =========================
   MESSAGE SECTION
   ========================= */

.message-section {
  max-width: 650px;
  margin: 0 auto 55px;
}

.message-section p {
  color: var(--text);
  line-height: 2;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 15px;
}

.message-section span {
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold-soft),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--title);
  letter-spacing: 1px;
}

/* =========================
   ACTION BUTTONS
   ========================= */

.action-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-bottom: 60px;
}

.action-buttons a,
.action-buttons button {
  min-width: 220px;

  padding: 14px 28px;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  background: transparent;

  color: var(--white);

  border: 1px solid rgba(255, 184, 165, 0.35);

  border-radius: 40px;

  text-decoration: none;

  text-transform: uppercase;

  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 2px;
  font-weight: 500;

  cursor: pointer;

  transition:
    transform 0.35s,
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}

.action-buttons a::before,
.action-buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;

  width: 130%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 248, 242, 0.18) 50%,
    transparent 80%
  );

  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.action-buttons a:hover::before,
.action-buttons button:hover::before {
  left: 130%;
}

.action-buttons a:hover,
.action-buttons button:hover {
  transform: translateY(-4px);

  background: rgba(255, 184, 165, 0.08);

  border-color: var(--gold);

  box-shadow: 0 8px 25px rgba(255, 184, 165, 0.15);
}

/* =========================
   FOOTER
   ========================= */

footer {
  padding-bottom: 20px;
}

.footer-line {
  line-height: 1.9;
  color: rgba(255, 248, 242, 0.82);
  margin-bottom: 18px;
}

.footer-sign {
  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-family: var(--title);

  font-size: 1rem;

  line-height: 1.9;

  letter-spacing: 1px;
}

/* =========================
   DECORATIVE CORNERS
   ========================= */

.lantern {
  position: fixed;
  top: 20px;

  background: linear-gradient(135deg, var(--champagne), var(--rose-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-size: 1.6rem;

  user-select: none;
  pointer-events: none;

  animation: lanternFloat 4s ease-in-out infinite;
}

.lantern-left {
  left: 20px;
}

.lantern-right {
  right: 20px;
}

@keyframes lanternFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =========================
   FLOATING PARTICLES
   ========================= */

#particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

#particles div {
  position: absolute;
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255, 184, 165, 0.45);

  box-shadow: 0 0 10px rgba(255, 184, 165, 0.25);

  animation: particleFloat 14s linear infinite;
}

@keyframes particleFloat {
  from {
    transform: translateY(100vh) scale(0.5);

    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 0.8;
  }

  to {
    transform: translateY(-10vh) scale(1.1);

    opacity: 0;
  }
}

@keyframes auroraMove {
  0% {
    transform: translate3d(-2%, -2%, 0) rotate(0deg) scale(1);
    opacity: 0.55;
  }

  100% {
    transform: translate3d(3%, 2%, 0) rotate(8deg) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes cardShine {
  0%,
  45% {
    transform: translateX(-130%) skewX(-18deg);
    opacity: 0;
  }

  60% {
    opacity: 0.8;
  }

  100% {
    transform: translateX(145%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes nameGlow {
  0%,
  100% {
    text-shadow: 0 0 24px rgba(255, 184, 165, 0.14);
    filter: brightness(1);
  }

  50% {
    text-shadow:
      0 0 42px rgba(255, 184, 165, 0.3),
      0 0 70px rgba(248, 217, 140, 0.16);
    filter: brightness(1.08);
  }
}

@keyframes countFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* =========================
   PAGE REVEAL ANIMATION
   ========================= */

.welcome-text,
.couple-section,
.wedding-details,
.divider,
.countdown-section,
.message-section,
.action-buttons,
footer {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.welcome-text {
  animation-delay: 0.15s;
}

.couple-section {
  animation-delay: 0.3s;
}

.wedding-details {
  animation-delay: 0.45s;
}

.divider {
  animation-delay: 0.6s;
}

.countdown-section {
  animation-delay: 0.75s;
}

.message-section {
  animation-delay: 0.9s;
}

.action-buttons {
  animation-delay: 1.05s;
}

footer {
  animation-delay: 1.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  #invitation {
    padding: 45px 16px 70px;
  }

  .bismillah {
    font-size: 1.35rem;
  }

  .welcome-text {
    font-size: 0.96rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons a,
  .action-buttons button {
    width: 100%;
    min-width: 100%;
  }

  .lantern {
    font-size: 1.2rem;
  }

  .orn-line {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .couple-name {
    font-size: 2.6rem;
  }

  .center-symbol {
    font-size: 2.2rem;
  }

  .top-pattern {
    width: 100px;
  }

  .header-ornament {
    gap: 10px;
  }

  .orn-line {
    width: 36px;
  }
}

/* =========================================
   TOP FLORAL HEADER
   ========================================= */

.top-floral-border {
  width: 100%;
  max-width: 420px;

  margin: 16px auto 42px;

  text-align: center;

  background: linear-gradient(
    90deg,
    var(--champagne),
    var(--rose-soft),
    var(--champagne)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-size: 1rem;
  letter-spacing: 12px;

  user-select: none;

  animation: floralGlow 5s ease-in-out infinite;
}

@keyframes floralGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(255, 184, 165, 0.35);
  }
}

/* ==========================================================
   WEDDING DETAILS
========================================================== */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  display: inline-block;
  position: relative;

  font-family: var(--title);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);

  letter-spacing: 1px;
}

.section-title span::after {
  content: "";

  display: block;

  width: 80px;
  height: 2px;

  margin: 16px auto 0;

  background: linear-gradient(
    to right,
    transparent,
    var(--champagne),
    transparent
  );
}

/* ===================================== */

.details-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

/* ===================================== */

.detail-card {
  position: relative;

  overflow: hidden;

  padding: 35px 25px;

  border-radius: 30px;

  text-align: center;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition: 0.35s ease;
}

.detail-card:hover {
  transform: translateY(-8px);

  border-color: rgba(248, 217, 140, 0.35);

  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
}

/* ===================================== */

.detail-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );

  transform: skewX(-20deg);

  transition: 0.8s;
}

.detail-card:hover::before {
  left: 150%;
}

/* ===================================== */

.detail-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  font-size: 2rem;

  color: #260811;

  background: linear-gradient(
    135deg,
    var(--champagne),
    var(--gold),
    var(--rose-soft)
  );

  box-shadow: 0 12px 25px rgba(245, 178, 111, 0.3);
}

/* ===================================== */

.detail-title {
  display: block;

  margin-bottom: 10px;

  color: var(--champagne);

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 0.72rem;
}

/* ===================================== */

.detail-card h3 {
  font-family: var(--title);

  font-size: 1.45rem;

  font-weight: 400;

  color: white;

  margin-bottom: 10px;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;

  font-size: 0.92rem;
}

/* ===================================== */

@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .detail-card {
    padding: 28px 22px;
  }

  .detail-icon {
    width: 62px;
    height: 62px;

    font-size: 1.7rem;
  }

  .section-title span {
    font-size: 1.6rem;
  }

  .detail-card h3 {
    font-size: 1.25rem;
  }
}

/* =====================================================
   WEDDING DETAILS
===================================================== */

.glass-card {
  width: min(92%, 700px);

  margin: 60px auto;

  padding: 20px 28px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.detail-row {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px 0;
}

.detail-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-line {
  width: 4px;

  height: 48px;

  border-radius: 999px;

  background: linear-gradient(to bottom, var(--champagne), var(--gold));
}

.detail-content {
  flex: 1;
}

.detail-label {
  display: block;

  font-size: 0.72rem;

  text-transform: uppercase;

  letter-spacing: 3px;

  color: var(--champagne);

  margin-bottom: 6px;
}

.detail-content h3 {
  font-family: var(--title);

  font-size: 1.35rem;

  font-weight: 400;

  color: white;

  margin-bottom: 5px;
}

.detail-content p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.9rem;

  line-height: 1.6;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 20px;
  }

  .detail-row {
    gap: 14px;

    padding: 16px 0;
  }

  .icon-line {
    height: 42px;
  }

  .detail-content h3 {
    font-size: 1.1rem;
  }

  .detail-content p {
    font-size: 0.82rem;
  }
}
/* @media (max-width: 480px) {
  .wedding-details {
    margin: 50px auto;
  }
 {
    margin-bottom: 28px;
  }

  .section-title span {
    font-size: 1.4rem;
  }

  .detail-card {
    border-radius: 22px;

    padding: 24px 18px;
  }

  .detail-icon {
    width: 55px;
    height: 55px;

    font-size: 1.4rem;

    margin-bottom: 16px;
  }

  .detail-title {
    font-size: 0.65rem;

    letter-spacing: 2px;
  }

  .detail-card h3 {
    font-size: 1.1rem;
  }

  .detail-card p {
    font-size: 0.82rem;
  }
} */

/* =====================================================
   PREMIUM COUNTDOWN
===================================================== */

.countdown-section {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.countdown-header {
  margin-bottom: 40px;
}

.count-ornament {
  color: var(--champagne);
  font-size: 1rem;
  letter-spacing: 8px;
  margin-bottom: 12px;
}

.count-small {
  display: block;
  color: var(--champagne);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.countdown-header h2 {
  font-family: var(--title);
  font-size: 2.3rem;
  font-weight: 400;
  color: white;
  margin-bottom: 15px;
}

.count-description {
  max-width: 500px;
  margin: auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.floating-countdown {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.glass-time {
  width: 145px;

  padding: 28px 15px;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);

  -webkit-backdrop-filter: blur(16px);

  transition: 0.35s;
}

.glass-time:hover {
  transform: translateY(-6px);

  border-color: var(--champagne);
}

.time-number {
  width: 82px;

  height: 82px;

  margin: auto;

  border-radius: 20px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, 0.06);
}

.time-number span {
  font-size: 3rem;

  font-weight: 700;

  color: var(--champagne);

  line-height: 1;
}

.glass-time small {
  display: block;

  margin-top: 16px;

  text-transform: uppercase;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .floating-countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .glass-time {
    flex: 1;
    width: auto;
    min-width: 0;

    padding: 14px 6px;

    border-radius: 16px;
  }

  .time-number {
    width: 42px;
    height: 42px;

    margin: auto;
  }

  .time-number span {
    font-size: 1.45rem;
  }

  .glass-time small {
    font-size: 0.52rem;
    letter-spacing: 1px;
    margin-top: 8px;
  }

  .countdown-header h2 {
    font-size: 1.6rem;
  }
}

/* ==========================================================
   END OF STYLE.CSS
   ========================================================== */
