
body {
    background: url(../aa2a.webp) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    backdrop-filter: blur(25px);

    font-family: 'Segoe UI', sans-serif;
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    height: fit-content;
    margin: 30px auto;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #012a4a;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

/* ===== LOGO SECTION ===== */
.justCenter {
    margin-top: 30px;
    text-align: center;
}

.instiLogo {
    margin: 10px;
    height: 100px;
    transition: transform 0.3s ease;
}

.instiLogo:hover {
    transform: scale(1.1);
}

/* ===== DATE & HEADER ===== */
.dateDiv {
    font-size: 39px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    color: #ff5400;
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 30px;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 35px;
    transition: all 0.3s ease;
    background-color: #014f86 !important;
    border: none;
}

.btn:hover {
    background-color: #012a4a !important;
    transform: scale(1.1);
    color: #fff;
}

/* ===== MAIN IMAGE CARD ===== */
.mainImg {
    min-width: 50vw;
    width: 100%;
    max-width: 90vw;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

/* ===== CONTENT BLOCK (CENTER) ===== */
.headr {
  
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 15px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== NOTES TEXT ===== */
.notes-text {
    font-size: 25px;
    font-weight: 600;
    /* color: #012a4a; */
    color: #012A4A;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        width: 90%;
        font-size: 1.5rem;
        height: auto;
        padding: 20px;
    }

    .headr {
        width: 90%;
        padding: 20px;
    }

    .btn {
        width: 90%;
        margin-bottom: 15px;
    }

    .mainImg {
        border-radius: 20px;
    }
}
.itenary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.itenary-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.itenary-img:hover {
    transform: scale(1.1);
}
.logoContainer{
    /* background: rgba(255, 255, 255, 0.35);
        */
    background-color: white;
    border-radius: 25px;
    border: 2px solid #012A4A;
    padding: 15px;
    margin: 20px auto;
    width: 300px;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    color: #012a4a;
    width: 85%;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    justify-items: center;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-name {
    font-weight: 700;
    color: #012a4a;
}

.contact-role {
    color: #01497c;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.contact-link {
    color: #014f86;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #012a4a;
    text-decoration: underline;
}

.countdown-container {
    backdrop-filter: blur(12px);
    padding: 15px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

}

.countdown-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  /* filter: brightness(70%); */
}

.mainCount {
  display: flex;
  justify-content: center;
  align-items: baseline;  
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
}

.days1 {
  font-size: 5rem;        /* big number */
  font-weight: 900;
  color: #012A4A;         /* gold/yellow */
  animation: pop 1s ease-in-out infinite alternate;
  text-shadow: 2px 2px 6px white;
    
}

.daysTogo {
  font-size: 2rem;
  font-weight: 800;
  color: #01497C;
  margin: 10px;
}

@keyframes pop {
  0% { opacity: 1; transform: scale(1); color: #033270}
  100% { opacity: 1; transform: scale(1.4); color: #033270}
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}


.flexdiv{
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;  
}

.invite-section {
  /* display: flex; */
  /* flex-direction: row; */
  width: 45%;
  height: 30vh;
  color: black;
  text-align: center;
  
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  margin: 50px auto;
  max-width: 500px;
  animation: fadeIn 1s ease-in-out;

  /* background: linear-gradient(135deg, #2156d3, #00d9ff); */
  background: linear-gradient(
    135deg,
    rgba(250, 250, 250, 0.8),
    rgba(48, 190, 255, 0.5)
  );
  /* Optional subtle texture */
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}



@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.invite-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.invite-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.invite-btn {
  background: #ffb703;
  border: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.invite-btn:hover {
  background: #ffd166;
  transform: scale(1.05);
}

.social-buttons {
  font-size: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
}

.fadeIn {
  animation: fadeInButtons 0.5s forwards;
}

  .follow-us {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .follow-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
    z-index: 0;
  }

  .follow-us-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .follow-us-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }

  .follow-us p {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 40px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .social-icons a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    transform: translateY(-8px);
    background: #7de9ff;
  }

  .social-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  }

  .follow-us .handle {
    margin-top: 25px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #ffde59;
  }


@keyframes fadeInButtons {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.share-btn {
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.share-btn:hover {
  transform: scale(1.1);
}

/* Button Colors */
.fb { background: #4267B2; }
.wa { background: #25D366; }
.ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.copy { background: #ffb703; color: #000; }

@media (max-width: 1100px) {
  .flexdiv{
        flex-direction: column;
        width: 90%;
        align-items: center;
        justify-content: center;  
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .social-icons a {
      width: 3rem;
      height: 3rem;
    }
    .social-icons img {
      width: 25px;
      object-fit: contain;
    }
    .invite-section {
        /* display: flex; */
        /* flex-direction: row; */
        width: 90%;
        height: fit-content;
        padding: 30px 20px;
        margin: 10px auto;
        max-width: 500px;
    }
    .invite-section h2 {
      font-size: 24px;
      font-weight: bold;
    }
    .contact-section {
        width: 96%;
        padding: 20px 5px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    .logoContainer{
          width: 300px;
    }
    .countdown-container {
        font-size: 10px !important;
        display: hidden;
    }
    .dateDiv {
        font-size: 25px;
        padding: 0 0;
    }
    .headr {
        font-size: 16px;
    }

    .countdown-overlay {
        display: none;
        position: absolute;
        top: 30%;
        left: 50%;
        font-size: 3px !important;
    }
}