/*
.heading-title {
    color: #000000;
    font-family: "Oswald", Sans-serif !important;;
    font-size: 480px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.125em;
    letter-spacing: 2.4px;
}
*/

.heading-title {
  color: #ffd73f;
  font-family: "Oswald", Sans-serif;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  /* line-height: 90px; */
  letter-spacing: 4px;
  -webkit-text-stroke-width: 0px;
  stroke-width: 0px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}

.heading-title2 {
  color: #fffefc;
  font-family: "Oswald", Sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  /* line-height: 40px; */
  letter-spacing: 4px;
  -webkit-text-stroke-width: 0px;
  stroke-width: 0px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  
  @media (max-width: 768px) {
			 font-size: 16px;
			}
  
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#hero {
  position: relative;
  overflow: hidden;
}

#hero .container {
  position: relative;
  z-index: 1;
}

@keyframes floatAndSway {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-5px) rotate(3deg); }
  50%  { transform: translateY(0px) rotate(0deg); }
  75%  { transform: translateY(-5px) rotate(-3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-plane {
  animation: floatAndSway 10s ease-in-out infinite;
  animation-delay: 1s;
  display: inline-block; /* Helps avoid layout glitches */
}





	
	.floating-logo {
  position: absolute;
  top: 5px;         /* adjust to lift above header */
  left: 10px;         /* adjust for horizontal placement */
  height: 120px;      /* make it bigger than the header (adjust as needed) */
  z-index: 10;        /* ensure it's above other elements */
  transition: transform 0.3s ease;
}

/* make header translucid when scrolled */
.header.scrolled {
  background-color: rgba(254, 199, 111, 0.85); /* Transparent when scrolled */
  backdrop-filter: blur(6px); */ Optional blur for glass effect */
}

/* Mobile fix: override for small screens */
@media (max-width: 768px) {
  .header.scrolled {
    backdrop-filter: none;
    background-color: rgba(254, 199, 111, 0.95); /* Slightly more opaque */
  }
}

/* Shrink and settle into header when scrolled */
.header.scrolled .floating-logo {
  top: 0px;
  height: 85px;
}


@media (max-width: 768px) {
  .floating-logo {
    height: 60px;     /* smaller on mobile */
    top:1px;
  }
  
   .header.scrolled .floating-logo {
    height: 60px;
    top: 1px;
  }
  
}

/*Sections paddings*/
.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}


/*Added for the gallery*/
#navmenu ul {
  margin-left: 180px;
}

@media (max-width: 768px) {
  #navmenu ul {
    margin-left: 0; 
  }
}


/*Header colors start */




@media (min-width: 1200px) {
    .navmenu a, .navmenu a:focus {
        color: #191919;
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
}

@media (min-width: 1200px) {
    .navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
        color: #ffffff;
    }
}

.header {
    color: var(--default-color);
    background-color: #ffab00;
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.7);
}

@media (min-width: 1200px) {
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #ff001d;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
}

.header .header-social-links a {
    color: 
color-mix(in srgb, #2a2a2a, transparent 40%);
    padding-left: 6px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}

.header .header-social-links a:hover {
    color: #e6e6e6;#
}



/* Header colors end */



.section-title  {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
   /* margin-bottom: -40px;*/
}


/*Gallery Start*/

		.image-grid-section {
		  padding: 60px 20px;
		  text-align: center;
		  margin-top: -53px;
		}

		.image-grid {
		  display: grid;
		  grid-template-columns: repeat(3, 1fr);
		  gap: 20px;
		  max-width: 1250px;
		  margin: 0 auto;
		  
		  @media (max-width: 768px) {
			display: grid;
			  grid-template-columns: repeat(2, 1fr);
			  gap: 20px;
			  max-width: 1250px;
			  margin: 0 auto;
			}
		  
		}
		
		
.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
		
		.grid-img {
		  width: 100%;
		  border-radius: 12px;
		  cursor: pointer;
		  transition: transform 0.3s ease;
		  object-fit: cover;
		  height: auto;
		}

		.grid-img:hover {
		  transform: scale(1.05);
		}
		

.caption {
    position: absolute;
    bottom: 15px;
    width: 80%;
    padding: 5px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    color: #f9f9f9;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
	margin-left: 10%;
}

@media (max-width: 768px) {
    .caption {
        position: relative; /* Changes position to follow the image */
        bottom: auto; /* Removes absolute positioning */
        width: 100%; /* Ensures full width */
        margin: 10px auto; /* Centers the caption below the image */
        display: block; /* Ensures visibility */
        background: none; /* Removes the gradient */
        color: #333; /* Darkens text for readability */
	   font-size: small;
    }
}

		/* Lightbox Styling with Animation */
		.lightbox {
		  display: none;
		  position: fixed;
		  z-index: 9999;
		  left: 0;
		  top: 0;
		  width: 100%;
		  height: 100%;
		  background: rgba(0, 0, 0, 0.85);
		  justify-content: center;
		  align-items: center;
		  animation: fadeIn 0.3s ease-in-out;
		}

		.lightbox-content {
		  max-width: 90%;
		  max-height: 90%;
		  border-radius: 12px;
		  animation: zoomIn 0.4s ease;
		}

		.lightbox .close {
		  position: absolute;
		  top: 20px;
		  right: 30px;
		  font-size: 40px;
		  color: #fff;
		  cursor: pointer;
		}

		/* Animations */
		@keyframes fadeIn {
		  from { opacity: 0; }
		  to   { opacity: 1; }
		}

		@keyframes zoomIn {
		  from { transform: scale(0.8); opacity: 0; }
		  to   { transform: scale(1); opacity: 1; }
		}

/*Gallery end */

.img-resize {
  display: block;
  max-width: 40%;
  height: auto;
  transition: transform 0.3s ease;
}


.img-resize:hover {
   transform: scale(1.05);
}


/*FOOTER*/

.footer {
    color: #d5c9c9;
    background-color: #0c0c0c;
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.footer .social-links a {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid 
color-mix(in srgb, #979797, transparent 50%);
    font-size: 16px;
    color: 
color-mix(in srgb, #ffffff, transparent 50%);
    margin: 0 5px;
    transition: 0.3s;
}

.youtube-icon {
    max-width: 120px;
    height: auto;
    margin-top: 15px;
    margin-left: 80px;
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease; /* Corrected transition */

    @media (max-width: 768px) {
        max-width: 80px;
        margin-left: 40px;
    }
}

.youtube-icon:hover {
    /*transform: scale(1.05); */
    opacity: 0.8;
}


.navbar-toggler {
  z-index: 10000;
}

/* Custom style for custom links */
  .custom-link {
    color: #444444;
    text-decoration: none; /* Remove underline */
  }

  .custom-link:hover {
    text-decoration: underline; /* Add underline on hover */
  }
  
  
  /* Start Resources */
  
  .resources-section {
      text-align: center;
      padding: 60px 20px;
      background: #fff;
	  margin-top: -60px;
    }
	
	
				/* start background overload  
						.resources-section {
					  position: relative; 
					  text-align: center;
					  padding: 60px 20px;
					  background-image: url('assets/img/background.jpg');
					  background-size: cover;
					  background-position: center;
					  background-attachment: fixed;
					  background-repeat: no-repeat;
					  margin-top: -60px;
					  color: #fff; 
					}

					.resources-section::before {
					  content: "";
					  position: absolute;
					  top: 0;
					  left: 0;
					  height: 100%;
					  width: 100%;
					 /*  background: rgba(0, 0, 0, 0.5); Dark overlay 
					  background: rgba(255, 255, 255, 0.5);
					  z-index: 0;
					}

					.resources-section > * {
					  position: relative;
					  z-index: 1;
					}

			  /* end background overload   */  

    .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      justify-items: center;
      padding: 0 20px;
    }
	
	@media (max-width: 768px) {
  .resources-grid {
  
  
  
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .resource-item {
    margin: 0 auto;
  }
}

    .resource-item {
      max-width: 280px;
    }

    .resource-item a img {
    width: 80px;
    /* height: 120px; */
    /* border-radius: 50%; */
    object-fit: cover;
    transition: transform 0.3s ease;
   /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
	}

    .resource-item a:hover img {
      transform: scale(1.08);
    }

    .resource-item h3 {
      margin-top: 15px;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
    }

    .resource-item p {
      font-size: 0.9rem;
      color: #666;
      margin-top: 5px;
    }
	
	
.resource-item h5 {
  font-size: 0.9rem; /* or adjust to your preference */
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
  
  /* End Resources */
  
  .maac-img {
    width: 250px; /* Adjust size as needed */
    display: block;
    float: right; /* Align to the left */
    margin-right: 70px; /* Add spacing between image and text */
}

@media (max-width: 900px) {
    .maac-img {
        width: 200px;
        float: none;
        margin: auto;
    }
}



/*Location Section Start */

.css-slider {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }

  .css-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade 28s infinite;
  }

  .css-slider .slide:nth-child(1) {
    animation-delay: 0s;
  }

  .css-slider .slide:nth-child(2) {
    animation-delay: 7s;
  }

  .css-slider .slide:nth-child(3) {
    animation-delay: 14s;
  }

  .css-slider .slide:nth-child(4) {
    animation-delay: 21s;
  }

@keyframes fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  35%  { opacity: 1; }
  45%  { opacity: 0; }
  100% { opacity: 0; }
}

  
  /*Location Section End */
  
  
  
  /* Location Video start */
  
  .video-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}
 /*  Location video End */
 
 a.black-link {
  color: black;
  text-decoration: none;
}