/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Times New Roman", "Georgia", serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
    font-family: "Playfair Display", "Crimson Text", "Georgia", serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
  }
  
  .nav-link:hover {
    color: #000000;
    border-bottom-color: #000000;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("./images/hero-background.jpg") center / cover;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  .hero-content {
    animation: fadeInUp 1.5s ease-out;
    margin-top: 4rem;
  }
  
  .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  
  .hero-date {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInArrow 1.5s ease-out 1s forwards;
  }
  
  .scroll-arrow {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    animation: gentleBounce 3s ease-in-out infinite;
    transition: color 0.3s ease;
  }
  
  .scroll-arrow:hover {
    color: #ffffff;
    animation-play-state: paused;
  }
  
  /* Story Section */
  .story-section {
    padding: 6rem 0;
    background: #f5f1eb;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #374151;
    margin-bottom: 1rem;
  }
  
  .divider {
    width: 6rem;
    height: 2px;
    background: #ffffff;
    margin: 0 auto;
  }
  
  /* Story section without slideshow */
  .story-content {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .story-text-new {
    width: 100%;
    max-width: 800px;
  }
  
  /* Responsive design for story section */
  @media (max-width: 768px) {
    .story-content {
      padding: 0 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .story-content {
      padding: 0 1rem;
    }
    
    .story-text-new div {
      padding: 0 0.5rem;
    }
  }
  
  /* Countdown Section */
  .countdown-section {
    padding: 5rem 0;
    background: #fff;
    color: #222;
    text-align: center;
  }
  
  .countdown-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #222;
  }
  
  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    align-items: end;
  }
  
  .countdown-item {
    padding: 1rem 0.5rem;
  }
  
  .countdown-number {
    font-family: 'Menlo', 'Fira Mono', 'Consolas', monospace;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #222;
  }
  
  .countdown-label {
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  
  /* Details Section */
  .details-section {
    padding: 6rem 0;
    background: #f5f1eb;
  }
  
  .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .detail-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .detail-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  
  .detail-icon {
    font-size: 2rem;
    margin-bottom: 0;
  }
  
  .detail-card h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.01em;
  }
  
  .detail-main {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
  }
  
  .detail-sub {
    color: #6b7280;
    margin-bottom: 0.25rem;
    font-size: 0.98rem;
  }
  
  /* RSVP Section */
  .rsvp-section {
    padding: 6rem 0;
    background: white;
  }
  
  .form-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .form-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Gifts Section */
  .gifts-section {
    padding: 6rem 0;
    background: #f5f1eb;
    color: #222;
  }
  
  .gifts-card {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .gift-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  
  .gifts-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  /* Footer */
  .footer {
    background: #fff;
    color: #222;
    padding: 3rem 0;
    text-align: center;
  }
  
  .footer-names {
    font-family: 'Blank Script', 'Playfair Display', 'Crimson Text', Georgia, serif;
    font-size: 1.7rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes gentleBounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  @keyframes fadeInArrow {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-container {
      gap: 1rem;
      padding: 1rem;
    }
  
    .nav-link {
      font-size: 0.8rem;
      padding: 0.5rem;
    }
  
    .hero-video {
      object-position: center;
    }
  
    .story-content {
      padding: 0 1rem;
    }
  
    .countdown-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  
    .countdown-grid {
      gap: 1.2rem;
    }
  
    .countdown-number {
      font-size: 1.7rem;
    }
  
    .countdown-label {
      font-size: 0.7rem;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .gifts-card {
      margin: 0 1rem;
      padding: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-video {
      object-position: center;
    }
  
    .countdown-section {
      padding: 3rem 0;
    }
  
    .countdown-title {
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
  
    .countdown-grid {
      gap: 0.7rem;
    }
  
    .countdown-item {
      padding: 0.5rem 0.2rem;
    }
  
    .countdown-number {
      font-size: 1.1rem;
    }
  
    .countdown-label {
      font-size: 0.55rem;
      letter-spacing: 0.08em;
    }
  }
  
  @media (max-width: 360px) {
    .countdown-grid {
      grid-template-columns: 1fr;
      gap: 0.5rem;
      max-width: 280px;
    }
  
    .countdown-item {
      padding: 0.75rem 0.5rem;
    }
  
    .countdown-number {
      font-size: 1.8rem;
    }
  
    .countdown-label {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 600px) {
    .hero-content {
      margin-top: 2rem;
    }
  }
  
  @font-face {
    font-family: 'Blank Script';
    src: url('./fonts/Blank Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  .hero-title,
  .section-header h2,
  h1, h2, h3 {
    font-family: 'Blank Script', 'Playfair Display', 'Crimson Text', Georgia, serif;
    font-weight: normal;
    letter-spacing: 0.02em;
  }
  
  .rsvp-button {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    font-family: inherit;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    margin: 2rem 0;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  
  .rsvp-button:hover {
    background: #6b5b47;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  
  .detail-button {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
  }
  
  .detail-button:hover {
    background: #6b5b47;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  
  /* Trailer Section */
  .trailer-section {
    padding: 6rem 0;
    background: #f5f1eb;
  }
  
  .trailer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
  }
  