* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f7f3;
  color: #111;
  overflow-x: hidden;
}
body p {
  font-size: 15px;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

/* =========================
SIDEBAR
========================= */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 75px;
  height: 100vh;
  background: #f8f7f3;
  border-right: 1px solid #111;
  z-index: 1000;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar img {
  width: 55px;
  margin-top: 20px;
}

.vertical-text {
  writing-mode: vertical-rl;
  margin-top: 40px;
  color: #005ca8;
  font-size: 22px;
  letter-spacing: 2px;
}

/* =========================
NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f8f7f3;
  margin-left: 75px;
  border-bottom: 1px solid #111;
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

.navbar li {
  border-left: 1px solid #111;
}

.navbar a {
  display: block;
  padding: 32px 55px;
  color: #005ca8;

  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
}

.navbar a:hover,
.navbar a.active {
  background: #005ca8;
  color: #fff;
}

/* =========================
MAIN
========================= */

.main-content {
  margin-left: 75px;
}

/* =========================
HERO
========================= */

.hero img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

/* =========================
TITLE
========================= */

.title-section {
  padding: 20px;
}

.title-section h1 {
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  color: #005ca8;
}

.title-section h3 {
  font-size: 20px;
  max-width: 700px;
}

/* =========================
ABOUT
========================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 70px;
  border-bottom: 1px solid #111;
}

.about-section h2 {
  font-size: 50px;
  color: #005ca8;
  font-weight: 300;
}

.about-section p {
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
GALLERY
========================= */
.custom-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 35px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-col img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.gallery-col img:first-child {
  height: 260px;
}

.gallery-col img:last-child {
  height: 360px;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 33.333%;
  padding: 0;
  height: 500px;
}
.gallery-item video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 99;
  font-size: 28px;
}

/* =========================
EVENT SECTION
========================= */

.event-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #222;

  padding: 20px 30px;
}

.event-content {
  padding: 50px;
  border-right: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-align: start;
}

.event-content h2 {
  font-size: 44px;
  color: #005da1;
  font-weight: 600;
  margin-bottom: 40px;
}

.event-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f9943b;
}

.event-content p {
  font-size: 18px;
  line-height: 2;
  max-width: 500px;
  margin-bottom: 50px;
}

.event-image video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 70px;
  border: 1px solid #222;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  background: #f7f6f2;
  transition: 0.3s;
}

.btn:hover {
  background: #005da1;
  color: #fff;
}
.book-link {
  display: inline-block;
  margin-top: 40px;
  color: #005da1;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
}

.book-link:hover {
  opacity: 0.8;
}

.event-btn-box {
  width: 185px;
  height: 70px;
  border: 1px solid #222;
  border-left: 1px solid #222;
  border-right: 1px solid #222;
}

.event-btn-box a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.event-btn-box a:hover {
  background: #005da1;
  color: #fff;
}
/* =========================
MENU BUTTON
========================= */

.menu-section {
  padding: 40px 70px;
  border-bottom: 1px solid #111;
}

.menu-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #111;
  color: #111;
}

/* =========================
CONTACT
========================= */

.contact-section {
  border-bottom: 1px solid #111;
  border-top: 1px solid #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.contact-grid > div {
  padding: 45px 30px;
  border-right: 1px solid #111;
}

.contact-grid > div:last-child {
  border-right: none;
}

.contact-grid h2 {
  font-size: 30px;
  font-weight: 600;
  color: #005da1;
}

.contact-grid h4 {
  font-size: 18px;
  font-weight: 600;
  color: #005da1;
}

.contact-grid p {
  font-size: 14px;
  font-weight: 400;
}

/* =========================
ADDRESS
========================= */

.address-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #111;
}

.address-box {
  padding: 50px;
}

.address-box:first-child {
  border-right: 1px solid #111;
}

.address-box h2 {
  font-size: 30px;
  font-weight: 300;
  color: #005da1;
}
.address-box h2 {
  font-size: 30px;
  font-weight: 300;
}

.address-box p {
  line-height: 2;
}

/* =========================
FOOTER
========================= */

footer {
  padding: 25px;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #111;
  margin: 0 15px;
  font-size: 14px;
}

/* =========================
MOBILE HEADER
========================= */

.mobile-header {
  display: none;
}

.mobile-menu {
  display: none;
}
.title-section,
.about-section,
.gallery-section,
.event-section,
.contact-section,
.address-section {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================
BRUNCH HERO
===================================== */

.brunch-hero {
  border-bottom: 1px solid #111;
}

.brunch-gallery img {
  height: auto;
  object-fit: cover;
  border-right: 1px solid #111;
}

.brunch-gallery img:last-child {
  border-right: none;
}

/* =====================================
BOOKING SECTION
===================================== */

.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.booking-left {
  padding: 50px 30px;
}

.booking-left h1 {
  font-size: 50px;
  color: #005da1;
  font-weight: 700;
  margin-bottom: 20px;
}

.booking-left p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 650px;
}

.booking-right {
  padding: 50px 40px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.form-group input {
  border: none;
  border-bottom: 1px solid #005da1;
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
  outline: none;
}

.book-btn {
  grid-column: 1 / -1;
  width: max-content;
  margin: 0 auto;
  background: none;
  border: none;
  color: #005da1;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}
/* =====================================
PACKAGE SECTION
===================================== */

.package-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #111;
}

.package-left {
  border-right: 1px solid #111;
}

.package-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-right {
  padding: 70px;
}

.package-right h2 {
  font-size: 58px;
  color: #005ca8;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}
.orange-text {
  color: #f7941d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}
.package-desc {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 45px;
}

.package-list h3 {
  font-size: 20px;
  color: #005ca8;
  margin-bottom: 20px;
}

.package-list p {
  font-size: 18px;
  margin-bottom: 14px;
}

.package-list span {
  color: #005ca8;
}

.package-link {
  display: inline-block;
  margin-top: 35px;
  color: #005ca8;
  font-size: 18px;
  text-decoration: underline;
}

/* =====================================
MASONRY GALLERY
===================================== */

.masonry-section {
  padding: 50px;
  border-bottom: 1px solid #111;
}

.masonry-gallery {
  columns: 4;
  column-gap: 20px;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border-radius: 4px;
}

/* =====================================
TABLET
===================================== */

@media (max-width: 991px) {
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-left {
    border-right: none;
    border-bottom: 1px solid #111;
  }

  .package-section {
    grid-template-columns: 1fr;
  }

  .package-left {
    border-right: none;
    border-bottom: 1px solid #111;
  }

  .masonry-gallery {
    columns: 3;
  }
}

/* =====================================
MOBILE
===================================== */

@media (max-width: 768px) {
  .brunch-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .brunch-gallery img {
    height: 180px;
  }

  .booking-left {
    padding: 30px 20px;
  }

  .booking-left h1 {
    font-size: 48px;
  }

  .booking-right {
    padding: 25px 20px;
  }

  .booking-right h3 {
    font-size: 22px;
  }

  .package-right {
    padding: 30px 20px;
  }

  .package-right h2 {
    font-size: 38px;
  }

  .package-card h3 {
    font-size: 20px;
  }

  .package-card h4 {
    font-size: 18px;
  }

  .masonry-section {
    padding: 20px;
  }

  .masonry-gallery {
    columns: 2;
    column-gap: 12px;
  }

  .masonry-gallery img {
    margin-bottom: 12px;
  }
}

/* =====================================
SMALL MOBILE
===================================== */

@media (max-width: 480px) {
  .brunch-gallery {
    grid-template-columns: 1fr;
  }

  .brunch-gallery img {
    height: 220px;
    border-right: none;
    border-bottom: 1px solid #111;
  }

  .booking-left h1 {
    font-size: 38px;
  }

  .package-right h2 {
    font-size: 32px;
  }

  .masonry-gallery {
    columns: 1;
  }
}

/* =====================================
KARAOKE HERO BANNER
===================================== */

.karaoke-banner {
  border-bottom: 1px solid #111;
}

.karaoke-banner img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}
.contact-grid a {
  color: inherit;
  text-decoration: none;
}

.contact-grid a:hover {
  text-decoration: underline;
}
/* =====================================
KARAOKE BOOKING
===================================== */

.karaoke-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #111;
}

.karaoke-left {
  padding: 70px;
  border-right: 1px solid #111;
}

.karaoke-left h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #005ca8;
  margin-bottom: 30px;
  font-weight: 700;
}

.karaoke-left p {
  font-size: 18px;
  line-height: 2;
  max-width: 650px;
}

.karaoke-right {
  padding: 60px;
}

.karaoke-right form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.karaoke-right input,
.karaoke-right select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #111;
  background: transparent;
  height: 55px;
  font-size: 15px;
  outline: none;
}

.karaoke-right button {
  grid-column: 1/-1;
  height: 55px;
  border: none;
  background: #005ca8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.footer-links-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links-menu a:hover {
  color: #005da1;
}

.footer-links-menu .active-link {
  color: #005da1;
  font-weight: 700;
}
/* =====================================
FRIDAY SECTION
===================================== */

.highlight-text {
  color: #005ca8;
  font-size: 22px;
  line-height: 1.8;
  margin: 30px 0;
}

.event-link {
  display: inline-block;
  margin-top: 20px;
  color: #005ca8;
  font-weight: 600;
  text-decoration: none;
}

/* =====================================
MASONRY GALLERY
===================================== */

.masonry-section {
  padding: 40px;
  border-bottom: 1px solid #111;
}

.masonry-gallery {
  columns: 3;
  column-gap: 20px;
}

.masonry-gallery img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* =====================================
TABLET
===================================== */

@media (max-width: 991px) {
  .karaoke-booking {
    grid-template-columns: 1fr;
  }

  .karaoke-left {
    border-right: none;
    border-bottom: 1px solid #111;
  }

  .karaoke-right form {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    columns: 2;
  }
}

/* =====================================
MOBILE
===================================== */

@media (max-width: 768px) {
  .karaoke-left {
    padding: 30px 20px;
  }

  .karaoke-right {
    padding: 25px 20px;
  }

  .karaoke-left h1 {
    font-size: 52px;
  }

  .karaoke-left p {
    font-size: 16px;
    line-height: 1.8;
  }

  .highlight-text {
    font-size: 18px;
  }

  .masonry-section {
    padding: 20px;
  }

  .masonry-gallery {
    columns: 1;
  }
}

/* =====================================
SMALL MOBILE
===================================== */

@media (max-width: 480px) {
  .karaoke-left h1 {
    font-size: 42px;
  }

  .event-content h2 {
    font-size: 36px;
  }
}
