

/* ----------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------- */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Inter", sans-serif;
  background: #fff;
  color:#1a1a1a;
  overflow-x:hidden;
}


/* -----------------------------------
   HEADER (Premium Glass Navbar)
------------------------------------*/
header{
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 12px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container{
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}
/* LOGO */
.logo-box{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* FIXED LOGO SIZE – will NEVER stretch */
.logo-img{
  width: 100px;      /* MAIN FIX */
  height: 100px;     /* MAIN FIX */
  object-fit: contain; 
  display: block;
}

/* LOGO TEXT */
.logo-text{
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  -webkit-background-clip: text;
  color: transparent;
}

/* NAV */
.nav a{
  margin-left: 20px;
  font-weight: 700;
  color: #ff6a00;
  text-decoration: none;
}

/* Buttons */
.btn-nav{
  border: 2px solid #ff6a00;
  padding: 8px 14px;
  border-radius: 6px;
}

.btn-nav:hover{
  background: #ff6a00;
  color: white;
}

/* MOBILE */
@media(max-width: 768px){
  .nav{
    display: none;
  }
  .logo-img{
    width: 45px;
    height: 45px;
  }
}
/* ----------------------------------------------------
   MOBILE MENU BUTTON
---------------------------------------------------- */
.menu-icon {
  display: none;
  font-size: 32px;
  color: #ff6a00;
  cursor: pointer;
  font-weight: 900;
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
---------------------------------------------------- */
@media(max-width: 850px) {

  .menu-icon {
    display: block;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: -260px;
    width: 240px;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    border-left: 3px solid #ff6a00;
    transition: 0.35s ease;
    z-index: 999999;
  }

  /* When menu is opened */
  .nav.show {
    right: 0;
  }

  /* Mobile nav links */
  .nav a {
    margin: 0;
    padding: 10px 0;
    text-align: left;
    color: #ff6a00;
    font-size: 18px;
    font-weight: 700;
  }

  .btn-nav {
    margin-top: 12px;
    text-align: center;
  }

  /* Hide desktop nav */
  .nav-container nav {
    display: none;
  }

  /* Show our custom nav */
  #mobileMenu {
    display: flex;
  }
}

/* -------------------------------------------
   ACTIVITIES PAGE TITLE
------------------------------------------- */
.activities-title {
  text-align: center;
  padding: 140px 20px 40px;
  background: linear-gradient(135deg, #fff4eb, #ffe2c9);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  overflow: hidden;
}

.activities-title::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('wave.svg') no-repeat center bottom / cover;
  opacity: 0.35;
}

.activities-title h1 {
  font-size: 42px;
  color: #ff6a00;
  font-weight: 900;
  letter-spacing: -1px;
  animation: fadeDown 1s ease;
}

/* Animation */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* -------------------------------------------
   FILTER BUTTONS (Premium)
------------------------------------------- */
.filter-buttons {
  text-align: center;
  margin: 35px 0;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: 2px solid #ff6a00;
  background: white;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.filter-btn:hover {
  background: #ff6a00;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}

/* Active Button */
.filter-btn.active {
  background: linear-gradient(90deg, #ff6a00, #ff9440);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
}

/* Button Press Pop Animation */
.filter-btn:active {
  transform: scale(0.92);
}

/* Mobile Friendly */
@media(max-width: 768px) {
  .activities-title h1 {
    font-size: 34px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}


/* ----------------------------------------------------
   ACTIVITY CARDS — PREMIUM SUBHVAISHALI DESIGN
---------------------------------------------------- */

.activity-card {
  max-width: 1000px;
  margin: 35px auto;
  display: flex;
  gap: 25px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(255, 120, 0, 0.18);
  border: 1px solid rgba(255, 120, 0, 0.18);
  transition: 0.35s ease;
  overflow: hidden;
  position: relative;
}

/* Hover Lift */
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(255, 120, 0, 0.28);
  border-color: rgba(255, 120, 0, 0.35);
}

/* Soft highlight glow */
.activity-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,120,0,0.25), transparent 70%);
  opacity: 0;
  transition: 0.4s ease;
}

.activity-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* IMAGE -------------- */
.activity-img img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Zoom on hover */
.activity-card:hover .activity-img img {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(255, 120, 0, 0.35);
}

/* DETAILS -------------- */
.activity-details-simple {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.activity-details-simple h2 {
  font-size: 24px;
  font-weight: 900;
  color: #ff6a00;
  margin-bottom: 6px;
}

.activity-details-simple .short-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* BUTTON */
.know-more-btn {
  width: fit-content;
  margin-top: 5px;
  padding: 8px 16px;
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: 0.3s ease;
}

.know-more-btn:hover {
  background: #ff6a00;
  box-shadow: 0 10px 22px rgba(255,106,0,0.35);
}


/* ----------------------------------------------------
   RESPONSIVE (MOBILE)
---------------------------------------------------- */
@media(max-width: 850px) {
  .activity-card {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .activity-img img {
    width: 100%;
    height: 230px;
  }

  .activity-details-simple h2 {
    font-size: 22px;
  }

  .know-more-btn {
    margin: 0 auto;
  }
}
/* ----------------------------------------------------
   FILTER BUTTONS — PREMIUM STYLE
---------------------------------------------------- */

.filter-buttons {
  max-width: 900px;
  margin: 40px auto 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-btn {
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 30px;
  border: 2px solid #ff8c42;
  color: #ff6a00;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 4px 14px rgba(255,120,0,0.15);
}

.filter-btn:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,120,0,0.35);
}

/* Active Button (Selected) */
.filter-btn.active {
  background: linear-gradient(90deg,#ff6a00,#ff9440);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255,120,0,0.35);
  transform: translateY(-4px);
}

/* ----------------------------------------------------
   REVEAL ANIMATION
---------------------------------------------------- */

.reveal{
  opacity:0;
  transform:translateY(40px) scale(0.97);
  transition:0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
/* PERFECT ACTIVITY CARD IMAGE SIZE */
.activity-img img{
  width: 180px;              /* earlier 230px → now perfect smaller */
  height: 130px;             /* earlier 165px → now proportional */
  border-radius: 14px;
  object-fit: cover;
  filter: brightness(0.95);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  transition: 0.35s ease;
}

/* Hover Image Effect */
.activity-card:hover .activity-img img{
  transform: scale(1.06);
  filter: brightness(1.05) contrast(1.05);
}
.know-more-btn {
  display: inline-block;
  background:#ff6a00;
  padding: 10px 18px;
  color:white;
  font-weight:700;
  border-radius:10px;
  text-decoration:none;
  transition:0.3s ease;
  position: relative;
  z-index: 5;   /* ⭐ Button नेहमी वर दिसेल */
}
.activity-card::before {
  z-index: -1;
}
.activity-card {
  position: relative;
  z-index: 1;
}

.activity-card * {
  position: relative;
  z-index: 2;   /* कार्डमध्ये सर्व content वर दिसेल */
}
.activity-card:hover .know-more-btn {
  background:#ff7d1a;
  transform:scale(1.08);
  box-shadow:0 12px 22px rgba(255,106,0,0.25);
}
/* ----------------------------------------------------
   CONTACT SECTION (Premium)
---------------------------------------------------- */
.contact-section{
  padding:80px 24px;
  background:linear-gradient(135deg,#fff4eb,#ffe1cc);
  border-top-left-radius:60px;
  border-top-right-radius:60px;
  position:relative;
  overflow:hidden;
}

/* wave */
.contact-section::before{
  content:"";
  position:absolute;
  top:-40px;
  left:0;
  width:100%;
  height:120px;
  background:url('wave.svg') no-repeat top center/cover;
  opacity:0.25;
}

.contact-section h2{
  text-align:center;
  font-size:38px;
  color:#ff6a00;
  font-weight:900;
  margin-bottom:40px;
}

.contact-box{
  max-width:1000px;
  margin:auto;
  display:flex;
  gap:40px;
  padding:30px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);
  border-radius:22px;
  box-shadow:0 15px 30px rgba(255,120,0,0.20);
  border:1px solid rgba(255,120,0,0.20);
}

.contact-info{
  flex:1;
  padding:10px;
}

.contact-info h3{
  font-size:24px;
  font-weight:800;
  color:#ff6a00;
  margin-bottom:15px;
}

.contact-info p{
  font-size:16px;
  margin-bottom:10px;
  color:#333;
}


/* Form */
.contact-form{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid #ffb98a;
  font-size:16px;
  background:white;
  box-shadow:0 5px 14px rgba(255,120,0,0.15);
}

.contact-form textarea{
  height:150px;
}

.contact-form button{
  background:linear-gradient(90deg,#ff6a00,#ff9440);
  color:white;
  padding:12px;
  border-radius:10px;
  border:none;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,106,0,0.35);
}

/* Mobile */
@media(max-width:850px){
  .contact-box{
    flex-direction:column;
    text-align:center;
  }
}
/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer{
  background:#ff6a00;
  color:white;
  padding:50px 20px 20px;
  margin-top:60px;
  border-top-left-radius:50px;
  border-top-right-radius:50px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.footer h3,
.footer h4{
  font-weight:800;
  margin-bottom:12px;
}

.footer-about{
  flex:1;
}

.footer-about p{
  max-width:300px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  text-decoration:none;
  color:white;
  margin-bottom:6px;
  transition:0.3s;
  font-weight:600;
}

.footer-links a:hover{
  opacity:0.75;
}

.footer-contact p{
  margin-bottom:6px;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  font-size:14px;
  opacity:0.85;
}

/* Mobile */
@media(max-width:850px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-about p{
    margin:auto;
  }
}
