body {
    margin: 0;
    padding: 0;
    font-family: 'Cinzel Decorative', serif;
    background-color: #fef5f9;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background-image: url('assets/images/main-photo.jpg');
    background-size: contain;          /* Show full image */
    background-position: center top;   /* Center the image at the top */
    background-repeat: no-repeat;
    background-color: #fef5f9;         /* Fills remaining space with background */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 90px;              /* Adjust button vertical position */
  }
  
  
  .overlay {
    text-align: center;
    color: #f2dbdb;
    text-shadow: 2px 2px 5px #000;
  }
  
  .name {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    margin-bottom: 20px;
    color: #f5cbd1;
  }
  
  /* Luxury Button */
  .btn-click {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 15px;
    background: linear-gradient(to right, #f6d6e0, #e3a6b1);
    color: white;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-click:hover {
    background: #f0bebe;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
  .invitation-body {
    background: url('assets/images/bg-invitation.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  .invitation-card {
    background-color: rgba(255, 255, 255, 0.607);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 0 20px rgba(248, 246, 246, 0.5);
    color: #b48f8f;
  }
  
  .music-icon {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 99;
  }
  
  .music-icon img {
    width: 40px;
    cursor: pointer;
  }
  
  .tabs button {
    background-color: #f2e9e9;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color:#63484c
  }
  
  .tabs button:hover {
    background-color: #aa2e2e7d;
  }
  
  .tab-content {
    padding: 1rem; /* this is p-2 equivalent */
    margin-top: 20px;
    background-color: #fff0f58e; /* soft pink background */
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(22, 22, 22, 0.1);
  }
  
  .tab-content ul {
    list-style: none;
    padding: 0;
  }
  
  .tab-content li {
    margin: 10px 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6a3a3;
    border-radius: 10px;
    background-color: #ffffff96;
    color: #6b4c4c;
    font-family: 'Dancing Script' , cursive; /* 👈 Apply luxury cursive font */
    font-size: 1.0rem;
    font-weight: 400;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }
  
  
  .tab-content img {
    width: 24px;
    margin-right: 10px;
  
  }
  
  .tab-content li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tab-content img {
    width: 24px;
    margin-right: 10px;
  }
  .attire-image {
    width: 100%;
    max-width: 90vw;
    height: 100;
    display: block;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border: 2px solid#e5c1dc;
  }
  .fade-in {
    animation: fadeIn 0.8s ease-in;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  
  