/* 
  Global Reset & Basic Styles 
--------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fff; /*#333;*/
  line-height: 1.6;
  background-color:#003333; /* #fff;*/
}

/* Container utility class */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
p {
    letter-spacing: 0.06em;
    word-spacing: 0.08em;
    line-height: 1.7;
}
a, a:active, a:visited{
  color: #fff;
}
.socialcontainer {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin-bottom: 20px; 
}
.social-nav{
  justify-content: right; 
  margin-top: -20px;
  margin-right: 20px;
}

/* 
  Navbar 
--------------------------------------------------*/
.navbar {
  background-color: #003333; /*#fff;*/
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 1rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff; /* #333;*/
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease-in-out; /* For sliding effect on mobile */
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #f6f7f6; /* #555;*/
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #fff; /* #000;*/
  text-decoration: none;
  box-shadow:
        0 2px 0 0 currentcolor, 
        0 -2px 0 0 currentcolor; 
}

/* 
  Burger menu button 
--------------------------------------------------*/
.burger {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 11; /* above overlay */
}
.burger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #feece0; /*#fff; /*#333;*/
  margin: 5px auto;
  transition: all 0.3s;
}

/* Burger transform into 'X' when active */
.burger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active .bar:nth-child(2) {
  opacity: 0;
}
.burger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 
  Nav Overlay for background fade 
--------------------------------------------------*/
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9; /* behind the burger but above rest */
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* 
  Hero Section (Smaller) 
--------------------------------------------------*/
.hero {
  height: 60vh; /* Smaller hero section */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-color: rgba(0,0,0,0.4);*/
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero-btn {
  display: inline-block;
  background-color: #efcdb2; /*#d2a903;*/
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-btn:hover {
  background-color: #f7d54e;
  color: #fff;
}

/* 
  Sections 
--------------------------------------------------*/
.section {
  padding: 4rem 0;
}
.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
  text-align: center;
}
.section p {
  max-width: 700px;
  margin: 0.5rem auto;
  text-align: center;
}
.gray-bg {
  background-color: #f9f9f9;
}

/* 
  Footer 
--------------------------------------------------*/
.footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer-content p {
  margin: 0;
}
.footer-content a, .footer-content a:visited{
    color: white;
}

.button{
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    transition: .5s;
    padding: 2px;
    margin: 5px;
} 
.button-light{
    color: #EEF9FF;
    border-color: #EEF9FF;
}
.button-light:hover {
    color: #000;
    background-color: #f1faff;
    border-color: #f0faff
}
.button-round{
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.small-icon{
    color: #EEF9FF;
    height: 15px;
    width: 18px;
    margin: 3px;
    margin-right: 6px;
}
.small-button-icon{
    height: 18px;
    width: 18px;
    margin: 3px;
}

/* 
  Responsive Adjustments 
--------------------------------------------------*/
@media screen and (max-width: 1200px) {
  .hero {
    height: 50vh; 
    min-height: 350px;
  }
}
@media screen and (max-width: 850px) {
  
  .hero {
    height: 40vh; 
  }
  
  .burger {
    display: block;
  }
  
  .nav-links {
    /* Turn .nav-links into a hidden side menu or overlay */
    position: fixed;
    top: 70px;       /* just below navbar */
    right: 0;
    background: #003333;
    /*background: #fff;*/
    flex-direction: column;
    width: 200px;
    transform: translateX(100%);
    box-shadow: -2px 0 6px rgba(0,0,0,0.1);
    padding-top: 1rem;     /* some spacing inside the menu */
    height: calc(100% - 70px);
  }

  .nav-links a{
    color: #feece0;
  }

  .nav-links a:hover{
    color: #fff;
  }

  /* Active state: slide in */
  .nav-links.active {
    transform: translateX(0%);
  }

  /* Each nav item separated for easy tapping */
  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .event-item {
    flex: 0 0 80%; /* Show fewer items on smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .logo img{
    max-width: 90%;
  }
  .hero-content h1 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 350px) {
  .hero {
    min-height: 450px;
  }
}