* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

.subtitle {
    font-size: 40px; 
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff; 
    text-transform: uppercase;
}

.gradient-text {
    color: #fff; 
    display: block; 
    text-shadow: none; 
}


.description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
    color: #fff; 
}

body {
    font-family: 'Poppins', sans-serif; 
    min-height: 100vh;
    color: #000; 
    background: #f0f0f0; 
}

a {
    text-decoration: none;
    color: inherit;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff; 
    position: sticky;
    top: 0;
    z-index: 1000; 
    background-color: #0DB512; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
}


.logo {
    display: flex;
    align-items: center;
}


.logo-img {
    height: 70px; 
    width: auto; 
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    font-weight: 700;
}

nav ul a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

/* --- HOVER OBER HERE --- */
nav ul a:hover {
    color: #C0FF3E; 
    
    text-underline-offset: 4px; 
    text-decoration-thickness: 2px; 
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid #FF9F00; 
    background-color:#FF9F00;
    color: #C0FF3E; 
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: #C0FF3E;
    color: #000;
}

.user-icon {
    font-size: 24px;
    cursor: pointer;
    color: #fff; 
}

/* --- Hamburger Menu Button (hidden on desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Responsive Navbar / Mobile Menu --- */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(75%, 320px);
        background-color: #0DB512;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1050;
    }



    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    nav ul a {
         color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    }
    nav ul a:hover {
    color: #C0FF3E;
    }

  

    body.nav-open {
        overflow: hidden;
    }
}




:root{
      --white:#FFFFFF;    
      --green:#78C841;
      --orange:#FF9A2E;
      --text:#1a1a1a;
      --shadow:0 6px 20px rgba(0,0,0,0.08);
      font-family:'Poppins', sans-serif;
    }
 

 
    h3{
      margin:4px 0 12px;
      font-size:22px;
      color:var(--text);
    }
 
   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 


/*---Gallery ---*/


.main-banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

  .orange-line {
    height: 6px;   
    background:var(--accent);              
    background-color: #FF9B2F;                     
    max-width: 100%; 
    margin:5px 50px 18px 50px;
    border-radius: 5px;           
  }

  .event-card {
  width: 220px;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.event-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}

.related-container {
  width: 90%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.related-container img {
  width: 100%;
  height: 250px;        /* ⭐ make them equal */
  object-fit: cover;    /* ⭐ crop nicely */
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.related-container img:hover {
  transform: scale(1.03);
}

.gallery-title{
  text-align:center;
  font-size:28px;
  margin:40px 0 20px 0;
  font-weight:600;
}

  .container {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0 4px;
    margin: 0 50px 10px 50px;
  }

  /* Create four equal columns that sits next to each other */
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }

  .column img {
    width: 100%;
    height: 250px;
    margin-top: 8px;
    vertical-align: middle;
    cursor: pointer;
    display: block;
    border-radius: 6px;
    object-fit: cover;
  }

  .column img:hover {
    transform: scale(1.02);
  }


  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }

  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

  .img-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.85);
      align-items: center;
      justify-content: center;
      padding: 20px;
  }

  .img-modal.open { 
    display: flex; 
  }

  .img-modal-content {
      display: block;
      margin: auto;
      max-width: 85%;
      max-height: 85%;
      border-radius: 5px;
      outline: 6px solid;
      outline-color: #78C841;
      outline-offset: 6px;
      transition: outline 0.4s ease;
    }

  .img-modal .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      font-weight: bold;
      color: #FF9A2E;
      cursor: pointer;
      line-height: 1;
  }

  @media (max-width: 480px) {
      .img-modal .close { right: 16px; top: 12px; font-size: 32px; }
  }

  
 
@media (max-width: 768px) {
 
    h1 {
        font-size: 36px;
    }
 
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
 
    .footer-right {
        text-align: center;
    }
 
    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
 
    .social-icons a {
        margin: 0 5px;
    }
}

  .term-slider-section {
  width: 90%;
  margin: 10px auto;
  text-align: center;
}

.slider {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.slide img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.nav {
  background: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;   /* ⭐ 추가 */
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}










 
/* ================= FOOTER ================= */
 
footer {
    background-color: #0DB512;
    color: white;
    padding: 50px 20px;
    margin-top: 60px;
}
 
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
 
.footer-left {
    display: flex;
    gap: 25px;
    flex: 1;
    min-width: 280px;
}
 
.footer-left img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}
 
.footer-right {
    flex: 1;
    min-width: 250px;
    text-align: right;
}
 
.social-icons {
    margin-bottom: 20px;
}
 
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 75px;
    background-color: #0DB512;
    color: white;
    font-size: 26px;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}
 
.social-icons a:hover {
    background-color: #5c9246;
    transform: translateY(-3px);
}
 
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}
 
.footer-links {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}
 
.footer-links a {
    color: white;
    text-decoration: underline;
}
 
@media (max-width: 768px) {
 
    h1 {
        font-size: 36px;
    }
 
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
 
    .footer-right {
        text-align: center;
    }
 
    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
 
    .social-icons a {
        margin: 0 5px;
    }
}
 
.social-icons a:hover i {
    animation: sway 0.5s ease-in-out infinite alternate;
}

@keyframes sway {
    from { transform: rotate(-10deg); }
    to { transform: rotate(10deg); }
}





