/* =====================================
TABLET
===================================== */
@media (max-width: 768px) {
  .custom-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
  }

  .gallery-col {
    gap: 10px;
  }

  .gallery-col img:first-child {
    height: 180px;
  }

  .gallery-col img:last-child {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .custom-gallery {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .title-section h1 {
    font-size: 60px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-section h2 {
    font-size: 55px;
  }

  .about-section p {
    font-size: 20px;
  }

  .event-section {
    grid-template-columns: 1fr;
  }

  .event-image {
    order: 1;
  }

  .event-content {
    order: 2;
  }

  .event-image img {
    height: 500px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .address-section {
    grid-template-columns: 1fr;
  }

  .address-box:first-child {
    border-right: none;
    border-bottom: 1px solid #111;
  }
}

/* =====================================
MOBILE
===================================== */

@media (max-width: 768px) {
  /* HIDE DESKTOP */

  .sidebar {
    display: none;
  }

  .navbar {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  /* MOBILE HEADER */

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #111;
    background: #f8f7f3;
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .mobile-header img {
    width: 50px;
    height: auto;
  }

  .hamburger {
    font-size: 32px;
    cursor: pointer;
    color: #005ca8;
  }

  /* MOBILE MENU */

  .mobile-menu {
    display: none;
    background: #f8f7f3;
    border-bottom: 1px solid #111;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid #111;
    color: #111;
    font-size: 16px;
  }

  /* HERO */

  .hero img {
    height: 260px;
  }

  /* TITLE */

  .title-section {
    padding: 30px 20px;
  }

  .title-section h1 {
    font-size: 42px;
  }

  .title-section h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  /* ABOUT */

  .about-section {
    padding: 30px 20px;
  }

  .about-section h2 {
    font-size: 42px;
  }

  .about-section p {
    font-size: 16px;
    line-height: 1.8;
  }

  /* GALLERY */

  .gallery-item {
    flex: 0 0 100%;
  }

  .gallery-item img,
  .gallery-item video {
    height: 300px;
  }

  .prev,
  .next {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  /* EVENT */

  .event-content {
    padding: 30px 20px;
  }

  .event-content h2 {
    font-size: 40px;
  }

  .event-content h4 {
    font-size: 18px;
  }

  .event-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .event-image img {
    height: 300px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  /* MENU BUTTON */

  .menu-section {
    padding: 20px;
  }

  .menu-btn {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* CONTACT */

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div {
    border-right: none;
    border-bottom: 1px solid #111;
    padding: 25px 20px;
  }

  .contact-grid > div:last-child {
    border-bottom: none;
  }

  .contact-grid h2 {
    font-size: 40px;
  }

  .contact-grid p {
    font-size: 15px;
  }

  /* ADDRESS */

  .address-box {
    padding: 25px 20px;
  }

  .address-box h2 {
    font-size: 38px;
  }

  .address-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* FOOTER */

  footer {
    padding: 20px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    margin: 0;
  }
}

/* =====================================
SMALL MOBILE
===================================== */

@media (max-width: 480px) {
  .title-section h1 {
    font-size: 34px;
  }

  .about-section h2 {
    font-size: 34px;
  }

  .event-content h2 {
    font-size: 34px;
  }

  .contact-grid h2 {
    font-size: 34px;
  }

  .address-box h2 {
    font-size: 32px;
  }

  .hero img {
    height: 220px;
  }

  .gallery-item img {
    height: 240px;
  }
}
