*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

html,body {
    margin: 0;
    font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    top: 0;
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 


/* Cultural Calendar Section */

.cl-calendar-wrapper {
  width: 100%;
  background: #fdfdfb;
  padding: 100px 24px;
}

.cl-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cl-header-area {
  text-align: center;
  margin-bottom: 80px;
}

.cl-calendar-year {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1f2f5d;
  margin-bottom: 12px;
}

.cl-main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #1f2f5d;
  line-height: 1.1;
}

.cl-main-subtitle {
  max-width: 550px;
  margin: 25px auto;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.cl-season-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 100px 0 50px;
}

.cl-dot { width: 12px; height: 12px; border-radius: 50%; }
.cl-dot-winter { background: #68C7BD; }
.cl-dot-spring { background: #B4C768; }
.cl-dot-summer { background: #C76868; }
.cl-dot-autumn { background: #7268C7; }

.cl-season-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: #1f2f5d;
  font-weight: 500;
}

.cl-line { flex: 1; height: 1px; background: #e0e4eb; }

.cl-event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.cl-reverse .cl-event-image { order: 2; }
.cl-reverse .cl-event-content { order: 1; }

.cl-event-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.cl-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cl-event-card:hover .cl-event-image img {
  transform: scale(1.08);
}

.cl-month-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 8px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  border: none;
}

.cl-bg-winter { background: #68C7BD; }
.cl-bg-spring { background: #B4C768; }
.cl-bg-summer { background: #C76868; }
.cl-bg-autumn { background: #7268C7; }

.cl-view-gallery-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #1f2f5d;
  border: none;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  opacity: 0;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cl-event-image:hover .cl-view-gallery-btn { opacity: 1; }

.cl-badge {
  background: #f1f3f7;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #1f2f5d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cl-event-content h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 18px 0;
  color: #1f2f5d;
  line-height: 1.2;
}

.cl-event-content p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cl-meta-list {
  list-style: none;
  margin-bottom: 35px;
}

.cl-meta-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #1f2f5d;
  font-family: "Sora", sans-serif;
}

.cl-meta-list img { width: 18px; opacity: 0.7; }

.cl-explore-btn {
  background: #1f2f5d;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cl-explore-btn:hover {
  background: #152042;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 47, 93, 0.2);
}

.cl-gallery-modal {
  position: fixed;
  right: -500px;
  top: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #0a0a0a;
  z-index: 1000;
  padding: 60px 40px;
  overflow-y: auto;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: white;
}

.cl-gallery-modal.active { right: 0; }

.cl-gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}

.cl-gallery-overlay.active { visibility: visible; opacity: 1; }

.cl-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 40px;
}

.cl-gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }

@media (max-width: 1024px) {
  .cl-event-card { gap: 40px; }
  .cl-event-image { height: 350px; }
}

@media (max-width: 900px) {
  .cl-event-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cl-reverse .cl-event-image { order: 0; }
  .cl-reverse .cl-event-content { order: 1; }
  .cl-event-image { height: 380px; }
}

@media (max-width: 600px) {
  .cl-calendar-wrapper { padding: 60px 20px; }
  .cl-event-image { height: 280px; }
  .cl-main-title { font-size: 38px; }
  .cl-view-gallery-btn { opacity: 1; transform: translate(-50%, -50%) scale(0.9); }
  .cl-gallery-modal { max-width: 100%; }
}





/* Footer Section */

.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}

