@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');

:root {
  --primary-black: black;
  --primary-white: white;
  --primary-orange: #E85B10;

  --font-color-dark: black;
  --font-color-light: white;
  --font-third-color: rgb(224, 95, 20);

  /*font sizes*/
  --font-family: 'Poppins', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 4rem;

  /*gaps*/
  --gap: 2rem;
  --margin-small: 0.5rem;
  --margin-medium: 1rem;
  --margin-large: 2rem;
  --padding-small: 0.5rem;
  --padding-medium: 1rem;
  --padding-large: 2rem;

}

body {
  background-color: var(--primary-black);
}



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

ul {
  list-style: none;
}


/*----------------------Navbar section-----------------------*/

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  /* above the background image */
  background: transparent;
  padding: var(--padding-small) var(--padding-medium);
}

.navbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}


.menu-container {
  position: absolute;
  align-items: center;
  border-radius: 10px;
  top: 4.5rem;
  right: 0rem;
  width: 100%;
  padding: var(--padding-large);
  opacity: 0;
  color: rgb(255, 255, 255);
  background-color: black;
  transform: scale(0);
  transition: opacity.25s ease-in;

}

.list {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;


}

.list-item {
  padding: 0 1rem;
  padding: .5rem 0;
}

/* Active nav-link */
.list-link.current {
  color: var(--primary-orange);
  /* if you want a little underline instead of just color: */
  /* border-bottom: 2px solid var(--primary-orange); */
}

/* Optional: on hover of non-active links, keep your default hover style */
.list-link:not(.current):hover {
  color: var(--primary-orange);
}


.logout-btn-container {
  display: flex;
  align-items: center;
  padding: 0 1rem;
}


.logo {
  padding: .5rem;
  position: relative;
}

.logo img {
  width: 60px;
  display: block;
  position: relative;


}

.navbar-container {

  width: 100%;
  border-radius: 20px;
  background-color: rgba(53, 53, 53, 0.5);
  color: white;
  position: relative;
  padding: 0 1rem;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 2.5s ease 0.5s;
}

.container {

  width: auto;
  border-radius: 20px;
  background-color: rgba(53, 53, 53, 0.5);
  color: white;
  margin: 2rem;
  position: relative;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: top 2.5s ease 0.5s;
}

.logout-btn-container button {
  position: relative;
  display: inline;

  border-radius: 10px;
  font-size: var(--font-size-sm);
  background-color: var(--primary-orange);
  color: var(--font-color-light);
  font-weight: bold;
  padding: var(--padding-medium);
  border-radius: 10px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}

.get-started-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.5s ease;
  z-index: 0;             /* sit behind the text */
  border-radius: 10px;
}

/* on hover slide into place */
.get-started-btn:hover::before {
  left: 0;
}

/* make sure your link/text sits on top */
.get-started-btn > a {
  position: relative;
  z-index: 1;             /* sit above the ::before */
  color: inherit;         /* so it picks up your hover-color change */
  text-decoration: none;
  display: inline-block;  /* to avoid weird inline stacking issues */
}

/* switch text to black when the overlay is in front */
.get-started-btn:hover > a {
  color: black;
}

.open-menu-icon {
  color: #ffffff;
  background-color: transparent;
  font-size: 1.2rem;
}



/*----------------------Hero section-----------------------*/
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  /*background-image: linear-gradient(#a5a5a565, rgba(0, 0, 0, 0.5)), url(../images/eda70350-9624-4e6c-88d6-c4d58aa40de5.png);*/
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.8);
  transition: transform 1.5s ease-in-out, filter 2.5s ease;
  position: relative;
  overflow: hidden;

}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;

  color: rgb(0, 0, 0);
  text-align: center;
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 2.5s ease, transform 2.5s ease;


}

.main-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.main-heading h1 {
  color: var(--primary-white);
  padding: 1rem 1rem;

}



.main-heading p {

  color: rgb(221, 221, 221);
  padding: 0 1rem;
  padding-bottom: 1rem;
  font-size: 13px;
  font-style: italic;

}

/* Final positioning */
.hero.animate {

  filter: blur(0);
  transform-origin: center center;
  transform: scale(1);
}

.hero-content.animate {
  opacity: 1;
  transform: translateY(-20px);

}




/* Header JavaScript Styles */
.header.activated {
  box-shadow: 0 1px.5rem red;

}

.menu-container.activated {

  opacity: 1;
  transform: scale(1);
}

.open-menu-icon {
  display: block;
}

.close-menu-icon {
  display: none;
  color: #ffffff;
  font-size: 1.2rem;
}

/* Remove any white background from the mobile toggle */
.menu-toggle-icon {
  background: none !important;
  border: none;
  padding: 0;
  /* if you want it to shrink-wrap the icon exactly */
}

/* Ensure the <i> itself has no background */
.menu-toggle-icon i {
  background: none !important;
}

/* If you still see a white rectangle when it’s focused or active: */
.menu-toggle-icon:focus,
.menu-toggle-icon:active {
  outline: none;
  background: none !important;
}


.menu-toggle-icon.activated .open-menu-icon {
  display: none;

}

.menu-toggle-icon.activated .close-menu-icon {
  display: block;

}

/* Base */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Poppins', sans-serif; color:#333; line-height:1.6; }
a { text-decoration:none; color:inherit; }



/* Navbar */
.nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 2rem; background:#fff; box-shadow:0 2px 6px rgba(0,0,0,0.1);
}
.nav .logo img { height:40px; }
.nav-links { list-style:none; display:flex; gap:1.5rem; }
.nav-links a { font-weight:600; color:#555; transition:color .2s; }
.nav-links a:hover,
.nav-links a.active { color:#a2b01c; }

/* Hero */
.detail-hero {
  position:relative; height:60vh; background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center;
}
.hero-overlay {
  background:rgba(0,0,0,0.4); padding:2rem; text-align:center; border-radius:8px;
}
.hero-overlay h1 { color:#fff; font-size:3rem; margin-bottom:0.5rem; }
.hero-overlay p { color:#fff; font-size:1.2rem; }

/* Overview */
.detail-overview h2 {
  font-size:2rem;
  margin-bottom:1rem; 
  color:#fff;
  text-align:center;
}
.detail-overview p {
  font-size:1rem; 
  color:#a3a3a3;
  text-align:center;

}

/************************************ Gallery *************************************************/



.detail-gallery h2 {
  font-size:2rem;
  margin-bottom:1rem;
  color:#fff;
  text-align:center;
}

.detail-gallery {

 
  padding: 2rem;
  
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1rem;
}
.gallery-grid img {
  width:100%; height:200px; object-fit:cover;
  border-radius:8px; transition:transform .3s;
}
.gallery-grid img:hover {
  transform:scale(1.05);
}


/* Events */
.detail-events h2 {
  font-size:2rem; 
  margin-bottom:1rem; 
  color:#fff;
  text-align:center;
}
.events-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}
.event-card {
  background:#fff; padding:1.5rem; text-align:center;
  border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.1);
  transition:transform .2s, box-shadow .2s;
}
.event-card:hover {
  transform:translateY(-5px);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.event-card i { color:#000000; margin-bottom:0.75rem; }
.event-card h3 { margin-bottom:0.5rem; font-size:1.1rem; color: #000000; }
.event-card p { font-size:0.95rem; color:#555; }

/* Back Button */
.detail-back { text-align:center; margin:2rem; }
.btn-back {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:var(--primary-orange); color:#fff; padding:0.75rem 1.5rem;
  border-radius:4px; font-weight:600; transition:background .2s;
}
.btn-back:hover { background:#fff; color: #000000;}

/* Footer */
.detail-footer {
  text-align:center; padding:1rem; background:#f4f4f4;
  font-size:0.9rem; color:#666;
}

/* Responsive */
@media (max-width:768px) {
  .hero-overlay h1 { font-size:2.5rem; }
  .hero-overlay p { font-size:1rem; }
  .nav { flex-direction:column; gap:1rem; }
}


/*-------------------------------------Footer-----------------------------------------*/
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
}

.footer-logo {

  width: 100px;
}

.footer-top {
  color: #fff;
}


.footer-desc {
  text-align: center;
  padding: 2rem 0;
}

.footer-col {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-col h4 {
  font-size: 2rem;

}

.footer-list {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;
}

.footer-copy {
  text-align: center;
  padding: 2rem 1rem;
}

.footer-social a {
  padding: .5rem;
  font-size: 1.5rem;
}
.floating-message-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.2s;
}
.floating-message-btn:hover {
  background-color: #E85B10;
  transform: translateY(-2px);
}
.floating-message-btn i {
  pointer-events: none;
  font-size: 2.5rem;
  color: #000000;
}





@media (min-width: 767px) {

  .main-heading h1 {
    color: var(--primary-white);
    padding: 1rem 1rem;
    font-size: 3rem;

  }



  .main-heading p {

    color: rgb(221, 221, 221);
    padding: 0 1rem;
    padding-bottom: 1rem;
    font-size: 20px;
    font-style: italic;

  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 100px));
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
  }

  .content-container {
    display: flex;
align-items: flex-start;
    padding: 2rem 0;
  }

  .row-reverse {
    display: flex;
    flex-direction: row-reverse;
  }

  .content-container img {
    width: 50%;
    border-radius: 20px;
    min-height: 500px;
    background-position: center;
    background-size: cover;

  }

 .service-container h1 {
    font-size: 2rem;
    color: #E85B10;
  }

  .content-container p {
    padding:0 2rem;
    font-size: 1.2rem;
  }

  .text-block {
    width: 90%;
  }
}





@media screen and (min-width:1000px) {

  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 10px));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
  }

  

  .services-heading {
    width: 60%;
    padding: 3rem 2rem;
  }

  .services-heading h1 {
    font-size: 4rem;
  }

  .service-container h1 {
    font-size: 3rem;
    color: #E85B10;
  }

  .img-container {
    background-color: var(--primary-white);
    border-radius: 20px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 20px;
  }

  .container p {
    padding: 0 2rem;
    text-align: center;
  }


  .list {
    display: flex;
    flex-direction: row;

  }

  .list-item {
    padding: 1rem;
  }

  .screen-lg-hidden {
    display: none;
    transform: scale(0);

  }

  .menu-container {
    position: initial;
    width: initial;
    padding: initial;
    opacity: initial;
    transform: initial;
    background-color: transparent;
    display: flex;
  }

  .hero-content {
    display: flex;
    position: absolute;
    padding: 0 3rem;
    width: 70%;
    align-items: center;
    justify-content: center;


  }

  .main-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .main-heading h1 {
    text-align: center;
    font-size: 2.5rem;
  }

  .main-heading p {
    text-align: center;
  }


    .footer-desc {
    text-align: center;
    padding: 2rem 10rem;
    font-size: 1.5rem;
  }



}



@media screen and (min-width:2000px) {}