/* Code to change page width START */
.container_12 {
    width: 1000px;
}
.s1_grid_12{
    width: auto;
}
@media only screen and (max-width: 1000px) and (min-width: 600px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    max-width: 1000px;
    min-width: 600px;
}}
@media only screen and (max-width: 1000px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    max-width: 1000px;
    min-width: 600px;
    display: block;
}}
/* Code to change page width END */ 

/* Code to make video embeds responsive */

.container_12 {
width : 1299px;
}
.s1_grid_12 {
width : auto;
}
.video-responsive {
overflow : hidden;
padding-bottom : 56.25%;
position : relative;
height : 0;
}
.video-responsive iframe {
left : 0;
top : 0;
height : 100%;
width : 100%;
position : absolute;
}
/* Code to make video embeds responsive END */

/* Code to create a custom navigation menu */
/* ---------------- HEADER PLACEHOLDER ---------------- */
.header-placeholder {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}

/* Container: logo left, menu right */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertical center */
  max-width: 1200px; /* optional max width */
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo */
.logo img {
  height: 50px; /* adjust as needed */
  width: auto;
  display: block;
}

/* ---------------- MENU ---------------- */
.menu {
  display: flex;
  align-items: center;
  font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

/* prevent text wrapping */
.menu a,
.submenu a {
  white-space: nowrap;
  font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

/* Main menu */
.menu-main {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-main li {
  position: relative;
  margin-left: 28px;
}

/* Links */
.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

/* Animated underline hover */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 10px 22px;
  font-weight: 400;
}

/* Show submenu on hover */
.menu-main li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------- HAMBURGER ---------------- */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 28px;
  height: 22px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

/* Hamburger -> X */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* ---------------- MOBILE ---------------- */
@media(max-width: 900px) {
  .menu-icon {
    display: flex;
  }

  .menu-main {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    width: 250px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  }

  #menu-toggle:checked + .menu-icon + .menu-main {
    display: flex;
  }

  .menu-main li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .menu-main a {
    padding: 14px 20px;
    display: block;
  }

  /* mobile submenu */
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding: 0;
  }

  .submenu a {
    padding-left: 36px;
  }

  .menu-main li:hover .submenu {
    display: none;
  }

  .menu-main li:active .submenu {
    display: block;
  }
}

/* Code to create a custom navigation menu END */

/* Code for the template footer */
/* FOOTER */

.site-footer{
background:#0f1720;
color:#ffffff;
font-family:'Inter','Montserrat','Helvetica',Arial,sans-serif;
padding-top:50px;
}

/* Container */

.footer-container{
max-width:1200px;
margin:0 auto;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
padding:0 20px;
font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

/* Sections */

.footer-section{
flex:1;
min-width:220px;
font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

.footer-section h4{
font-size:16px;
margin-bottom:15px;
font-weight:600;
letter-spacing:0.5px;
}

/* Links */

.footer-links{
list-style:none;
padding:0;
margin:0;
font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
text-decoration:none;
color:#cbd5e1;
font-size:14px;
transition:color .25s ease;
}

.footer-links a:hover{
color:#ffffff;
}

/* Newsletter */

.newsletter-form{
display:flex;
margin-top:12px;
}

.newsletter-form input{
flex:1;
padding:10px;
border:none;
border-radius:4px 0 0 4px;
font-size:14px;
}

.newsletter-form button{
padding:10px 16px;
border:none;
background:#ffffff;
color:#000;
font-weight:600;
border-radius:0 4px 4px 0;
cursor:pointer;
transition:background .25s ease;
}

.newsletter-form button:hover{
background:#e5e5e5;
}

/* Contact section */

.footer-logo{
height:45px;
margin:10px 0;
}

/* Bottom bar */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
margin-top:40px;
padding:18px;
font-size:13px;
color:#cbd5e1;
}

/* Responsive */

@media(max-width:900px){

.footer-container{
flex-direction:column;
text-align:center;
}

.newsletter-form{
flex-direction:column;
}

.newsletter-form input{
border-radius:4px;
margin-bottom:8px;
}

.newsletter-form button{
border-radius:4px;
}

}

/* Code for the template footer END */

/* HomePage Slideshow */

.hero-slider{
position:relative;
width:100%;
height:70vh;
overflow:hidden;
font-family:'Montserrat','Helvetica',Arial,sans-serif;
}

/* slides container */

.slides{
position:relative;
width:100%;
height:100%;
}

/* individual slide */

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
animation:slideAnimation 20s infinite;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

/* gradient overlay for readability */

.slide::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.2),
rgba(0,0,0,0.45)
);
}

/* slide timing */

.slide:nth-child(1){
animation-delay:0s;
}

.slide:nth-child(2){
animation-delay:5s;
}

.slide:nth-child(3){
animation-delay:10s;
}

.slide:nth-child(4){
animation-delay:15s;
}

/* animation */

@keyframes slideAnimation{

0%{opacity:0;}
5%{opacity:1;}
25%{opacity:1;}
30%{opacity:0;}
100%{opacity:0;}

}

/* CTA button */

.slider-overlay{
position:absolute;
bottom:45px;
left:50%;
transform:translateX(-50%);
z-index:3;
}

.cta-btn{
background:white;
color:black;
padding:14px 32px;
font-weight:600;
font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
text-decoration:none;
border-radius:4px;
letter-spacing:.5px;
transition:.25s;
}

.cta-btn:hover{
background:black;
color:white;
}

/* scroll indicator */

.scroll-indicator{
position:absolute;
bottom:20px;
right:20px;
display:flex;
gap:6px;
z-index:3;
}

.scroll-indicator span{
width:30px;
height:4px;
background:rgba(255,255,255,.5);
animation:indicator 20s infinite;
}

/* indicator timing */

.scroll-indicator span:nth-child(1){animation-delay:0s;}
.scroll-indicator span:nth-child(2){animation-delay:5s;}
.scroll-indicator span:nth-child(3){animation-delay:10s;}
.scroll-indicator span:nth-child(4){animation-delay:15s;}

@keyframes indicator{

0%{background:white;}
25%{background:white;}
30%{background:rgba(255,255,255,.4);}
100%{background:rgba(255,255,255,.4);}

}

/* responsive */

@media(max-width:900px){

.hero-slider{
height:55vh;
}

.cta-btn{
padding:12px 22px;
font-size:14px;
font-family: 'Inter', 'Montserrat', 'Helvetica', Arial, sans-serif;
}

.scroll-indicator span{
width:20px;
}

}

/* HomePage Slideshow END */

/* HomePage Event Banner */

.event-banner{
position:relative;
width:100%;
height:60vh;
overflow:hidden;
font-family:'Inter','Montserrat','Helvetica',Arial,sans-serif;
}

.event-banner img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* gradient overlay */

.event-banner::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.15),
rgba(0,0,0,0.45)
);
}

/* button container */

.event-overlay{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
z-index:2;
}

/* button */

.event-btn{
background:white;
color:black;
padding:14px 32px;
font-weight:600;
text-decoration:none;
border-radius:4px;
letter-spacing:.5px;
transition:.25s;
}

.event-btn:hover{
background:black;
color:white;
}

/* responsive */

@media(max-width:900px){

.event-banner{
height:45vh;
}

.event-btn{
padding:12px 24px;
font-size:14px;
}

}

/* HomePage Event Banner END */