
/* Reset & basics */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    /* BODY FONT - change here if you want! */
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    color: #3d1c27;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    height: 100%;

    
  
  margin: 0;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  header {
    text-align: center;
    margin-bottom: 40px;
  }
  .main-heading {
    /* MAIN HEADING FONT - change here! */
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #ff3d6f;
    text-shadow: 0 0 5px #ff8fa3;
  }
  .sub-heading {
    /* SUB-HEADING FONT - change here! */
    font-family: 'Satisfy', cursive;
    font-size: 1.5rem;
    color: #862d48;
    margin-top: 5px;
  }
  /*....................
  
  /*....................
  /* Intro */
  .intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .intro-text {
    flex: 1 1 300px;
    font-size: 1.2rem;
    padding-right: 20px;
    color: #4a2c3a;
  }
  .heart-animation {
    flex: 0 0 80px;
    margin-left: 20px;
  }
  .heart-icon {
    width: 80px;
    height: 80px;
    stroke: #ff2a6d;
    fill: #ff2a6d;
    animation: heartbeat 1.5s infinite;
  }
  @keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
  }
  
  .h2 {
    font-family: 'Allura', cursive;
    font-size: 3.8rem;
    margin-bottom: 10px;
    color: #e61e6e;
  }
  /* Our Story */
  .our-story {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 0 15px #ffb6c1aa;
  }
  .our-story h2 {
    /* OUR STORY HEADING FONT - change here! */
    font-family: 'Allura', cursive;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #e61e6e;
  }
  .story-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5d3a48;
  }
  
  /* Timeline */
  .timeline-section {
    margin-bottom: 50px;
  }
  .timeline-heading {
    /* TIMELINE HEADING FONT - change here! */
    font-family: 'Allura', cursive;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #d81e5b;
  }
  .timeline {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #ff3d6f;
  }
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
  }
  .timeline-dot {
    position: absolute;
    left: -11px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: #ff2a6d;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff7aab;
  }
  .timeline-content h3 {
    /* TIMELINE CONTENT HEADINGS - change here! */
    font-family: 'Allura', cursive;
    font-size: 1.6rem;
    color: #a01040;
  }
  .timeline-content p {
    font-size: 1.1rem;
    color: #652a3c;
  }
  
  /* Parallax Section */
  .parallax-love {
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1050&q=80'); /* or your Unsplash link */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.6);
  }
  @media (max-width: 768px) {
    .parallax-love {
      background-attachment: scroll !important;
      height: auto;
      padding: 60px 20px;
    }
  }
  
  
  .parallax-text {
    background: rgba(255, 255, 255, 0.4);
    padding: 20px 40px;
    border-radius: 20px;
    text-align: center;
    color: #702c42;
    /* PARALLAX TEXT FONT - change here! */
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    text-shadow: 0 0 5px #fff;
  }
  
  /* Love Notes Carousel */
  .love-carousel {
    margin-bottom: 50px;
    text-align: center;
  }
  .love-carousel h2 {
    /* CAROUSEL HEADING FONT - change here! */
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #d12b56;
  }
  .carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    height: 60px;
    overflow: hidden;
    border-radius: 15px;
    background: #ffced3cc;
    box-shadow: 0 0 15px #ff8ea3;
    display: flex;
    align-items: center;
    justify-content: center;
    /* CAROUSEL TEXT FONT - change here! */
    font-family: 'Quicksand', cursive;
    font-size: 1.5rem;
    color: #8b2f4d;
    padding: 0 20px;
    transition: opacity 0.5s ease-in-out;
  }
  .note {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: #ffe6eb;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: opacity 0.5s ease;
  
    /* ✅ Let it grow naturally */
    height: auto;
    max-height: none;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .note {
     display: none;
     opacity: 0;
  }
  
  .note.active {
    display: block;
    opacity: 1;
   
  }
  
  
  
  /* Gallery */
  .gallery-section {
    margin-bottom: 50px;
    text-align: center;
  }
  .gallery-section h2 {
    /* GALLERY HEADING FONT - change here! */
    font-family: 'Alex Brush', cursive;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #d12b56;
  }
  .gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
   .gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff7a9a;
    transition: transform 0.3s ease;
  }
  .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff4c78;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(50, 20, 30, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    z-index: 9999;
  }
  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 15px;
    box-shadow: 0 0 25px #ff5a85;
  }
  
  /* Love Letter */
  .love-letter {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 50px;
    /* LOVE LETTER FONT - change here! */
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: #a0224f;
    text-align: center;
    box-shadow: 0 0 20px #ffb0c1aa;
  }
  
  /* Proposal */
  .proposal {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }
  #revealBtn, #yesBtn {
    background: #ff3d6f;
    border: none;
    padding: 15px 35px;
    font-size: 1.3rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    /* BUTTON FONT - change here! */
    font-family: 'Parisienne', cursive;
    box-shadow: 0 0 10px #ff6291;
    transition: background-color 0.3s ease;
  }
  #revealBtn:hover, #yesBtn:hover {
    background-color: #e0245e;
  }
  #revealBtn, #noBtn {
    background: #ff3d6f;
    border: none;
    padding: 15px 35px;
    font-size: 1.3rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    /* BUTTON FONT - change here! */
    font-family: 'Parisienne', cursive;
    box-shadow: 0 0 10px #ff6291;
    transition: background-color 0.3s ease;
  }
   #revealBtn:hover, #noBtn:hover {
    background-color: #e0245e;
  }
  .proposal-text {
    margin-top: 25px;
    /* PROPOSAL TEXT FONT - change here! */
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    color: #d81e5b;
  }
  
  /* Fireworks Canvas */
  #fireworksCanvas {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120%;
    pointer-events: none;
    width: 100%;
    height: 300px;
    z-index: 1000;
  }
  
  /* Music toggle */
  .music-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    background: #ff3d6f;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    box-shadow: 0 0 10px #ff6291;
    color: white;
    z-index: 10000;
    transition: background-color 0.3s ease;
    /* MUSIC BUTTON FONT - change here! */
    font-family: 'Parisienne', cursive;
  }
  .music-btn:hover {
    background-color: #e0245e;
  }
  
  /* Floating hearts */
  .floating-hearts {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: visible;
    z-index: 999;
  }
  .floating-hearts svg {
    position: absolute;
    width: 20px;
    height: 20px;
    fill: #ff4c6b;
    animation: floatUp 6s linear infinite;
    opacity: 0.8;
  }
  @keyframes floatUp {
    0% {
      transform: translateY(100vh) scale(1);
      opacity: 0.8;
    }
    100% {
      transform: translateY(-20vh) scale(1.3);
      opacity: 0;
    }
  }
  
  /*......LOGIN-SCREEN..............*/
 /* #password-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffe6f3;
  } */
  /* Container styling */
.password-container {
  
  background: rgba(255, 255, 255, 0.85);
  border-radius: 35px;
  box-shadow: 0 15px 40px rgba(214, 95, 128, 0.3);
  padding: 50px 45px;
   margin: 0 auto;
  max-width: 500px;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  
}

.password-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(214, 95, 128, 0.4);
}
.password-container h2 {
  color: #ff3d6f; /* Romantic pink color */
  font-family: 'Arial', sans-serif; /* Or your preferred font */
  margin-bottom: 20px;
  text-shadow: 0 2px 3px rgba(0,0,0,0.1); /* Subtle shadow */
  font-size: 1.8rem; /* Slightly larger */
}
/*.password-container {
  width: 90%;
  max-width: 400px;
 
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
*/
.input-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

  input[type="password"] {
    padding: 15px;
    margin: 5px;
    border: 2px solid #ff5a85;
    border-radius: 5px;
    font-size: 6px;
    right:auto;
  }

 /* button {
    background-color: #ff4c6b;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #e0245e;
  }
*/
/* Submit button */
.submit-btn {
  background: linear-gradient(to right, #ff6b9d, #ff3d6f);
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;

  display: block; /* Makes it take full width */
  margin: 20px auto 0; /* Top 20px, auto horizontal, 0 bottom */
  width: 80%; /* Control width */
  max-width: 200px; /* Maximum width */
}

.submit-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #ff3d6f, #ff6b9d);
  transition: all 0.5s ease;
  z-index: -1;
}

.submit-btn:hover:before {
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 157, 0.7);
}

/* Input styling */
/*.password-input {
  padding: 18px 60px 18px 25px;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  background: rgba(255, 246, 248, 0.8);
  color: #5d3a48;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 182, 193, 0.2);
}

.password-input:focus {
  border-color: #ff6b9d;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.password-input::placeholder {
  color: #d49eb0;
  font-style: italic;
}
*/
#password {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

#password:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
}
/* Responsive adjustments */
@media (max-width: 600px) {
  .password-container {
    padding: 30px 25px;
    max-width: 95%;
  }
  
  .password-input {
    padding: 15px 55px 15px 20px;
    font-size: 1rem;
  }
  
  .toggle-password {
    font-size: 1.4rem;
  }
  
  .submit-btn {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}

/* Toggle button */
.toggle-password {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #ff6b9d;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.toggle-password:hover {
  color: #ff3d6f;
  background: rgba(255, 182, 193, 0.2);
  transform: translateY(-50%) scale(1.1);
}
  #private-content, #friends-content {
    text-align: center;
    padding: 30px;
    background-color: #ffefef;
    border-radius: 15px;
    margin: 50px;
    box-shadow: 0 0 15px rgba(255, 90, 133, 0.5);
  }



  /*==============================*/
  .romantic-btn {
    padding: 24px 30px;
    font-size: 1.4rem;
    border-radius: 20px;
    background: #ff4c6b;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 76, 107, 0.4);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  .romantic-btn:hover {
    background: #e0245e;
    transform: scale(1.05);
  }
  
  /* Modal overlay */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Modal content */
  .modal-content {
    background: #fff0f4;
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 105, 135, 0.6);
    animation: fadeIn 0.5s ease;
  }
  
  /* App Icon */
  .app-icon {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .app-icon:hover {
    transform: scale(1.1);
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  .surprise-button-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    text-align: center;
  }
  
  /* Button already styled? But here’s a touch more ❤️ */
  .romantic-btn {
    padding: 14px 34px;
    font-size: 1.4rem;
    border-radius: 30px;
    background: #ff4c6b;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 76, 107, 0.4);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .romantic-btn:hover {
    background: #e0245e;
    transform: scale(1.05);
  }
  
  .center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
  }
  @media (max-width: 600px) {
    .center-wrapper {
      padding-top: 60px;
      padding-bottom: 60px;
      min-height: auto;
    }
  }
  
  /*Hint System*/
  .hint-btn {
    background: transparent;
    border: none;
    color: #ff4c6b;
    font-size: 1rem;
    margin-top: 15px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .hint-btn:hover {
    color: #e0245e;
  }
  
  .hint-text {
    color: #a0224f;
    font-size: 1rem;
    margin-top: 10px;
    display: none;
    font-style: italic;
    text-align: center;
  }
  
  
  