/* =========================
   RESET + GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
  p{font-size: 20px;}
  background-color: block#ede5d1db;
  p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
}


body.menu-open {
  overflow: hidden;
  height: 100dvh;
  touch-action: none;
}

body {
  background-color: #fff5dfdb;
}


p { font-family: Gelasio, serif;
  color: #3c3932;
}


html {
  scroll-behavior: smooth;
}





/* =========================
   FONTS
========================= */
@font-face {
  font-family: Edwardian;
  src: url('fonts/Edwardian.TTF');
  font-weight: bold;
}


@import url('https://googleapis.com');







/* =========================
   DESKTOP SIDEBAR NAV
========================= */
.desktop-navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;

  /* animation */
  transform: translateX(-100%);
  opacity: 0;
  animation: slideFadeIn 0.25s ease forwards;
}

@keyframes slideFadeIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Logo */
.desktop-navbar .logo img {
  width: 50px;
  margin-bottom: 20px;
}

/* Icons */
.nav-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.nav-icons a img {
  width: 30px;
  filter: invert(1);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-icons a:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Separators */
.seperator {
  width: 30px;
  border: 1px solid #555;
  margin: 1px 0;
}

/* =========================
   MOBILE TOP NAVBAR
========================= */
.navbar {
  display: none;   /* stays hidden by default */

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  justify-content: space-between;
  align-items: center;

  background: hsl(0, 0%, 15%);
  padding: 15px 20px;
  color: white;

  z-index: 1000;
}
/* Left side */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 40px;
}

.site-name {
  font-size: 1.2rem;
  font-weight: bold;
}

/* =========================
   HAMBURGER BUTTON
========================= */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Animate to X */
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */
/* =========================
   MOBILE MENU (FIXED)
========================= */

.menu {
  position: fixed;
  top: 74px;
  right: 0;

  width: 100%;
  max-width: 300px;

  /* fallback + modern fix */
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);

  background: #5c5c5c;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding: 12px;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  transform: translateX(100%);
  transition: transform 0.4s ease;

  pointer-events: none;
  z-index: 999;
}

/* When menu is open */
.menu.show {
  transform: translateX(0);
  pointer-events: auto;
}

/* Menu buttons */
.menu a {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 16px;
  margin: 6px 0;

  font-size: 18px;

  background: #2a2a2a;
  color: white;
  text-decoration: none;
  border-radius: 8px;

  flex-shrink: 0; /* prevents squishing */

  transition: 0.2s ease;
}

.menu a:hover {
  background: linear-gradient(
    90deg,
    rgba(101, 101, 101, 0.9),
    rgba(157, 156, 156, 0.7)
  );
  transform: translateX(4px);
}

.menu a:active {
  transform: scale(0.97);
}

/* Optional separator */
.menu-seperator {
  width: 90%;
  border: 2px solid #2a2929;
  border-radius: 100px;
  margin: 10px auto;
}
/* =========================
   OVERLAY
========================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Prevent scroll when menu open */
/* =========================
   MAIN CONTENT
========================= */
.main-content {
  margin-left: 80px;
  padding: 20px;
}

/* =========================
   HOME SECTION
========================= */
.toppart {
  height: 60vh;
  width: 100%;
border-radius: 15px;
  background: url('Images/venue1.png') center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Desktop adjustment */
@media (min-width: 60px) {
  .toppart {
    margin-left: -40px;
    width: calc(100% + 80px);
    margin-top: -20px;
  }
}

/* Titles */

/* Venue Section */
.venue-section {
  display: flex;
  align-items: center;
  gap: 1vh;
}

@media (max-width: 768px) {
  .venue-section {
    flex-direction: column;
    text-align: center;
  }

  .venue-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
.title {
  text-align: center;
  font-size: clamp(5rem, 12vw, 90px);
  color: rgb(225, 230, 128);
  font-family: Edwardian;
  white-space: nowrap;
  margin-right: 20px;
  line-height: 80px;
}

.subtitle {
  font-size: clamp(0.625rem, 5vw, 30px);
  font-family: serif;
  letter-spacing: 1px;
  margin-right: 20px;
  line-height: 0;
}

/* Button */
.buttonhome {
  margin-top: 35px;
  padding: 5px 30px;
  background: rgb(232, 228, 207);
  color: black;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
  margin-right: 20px;
}

.buttonhome:hover {
  transform: scale(1.2);
  opacity: 0.9;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 700px) {

  /* Switch navbars */
  .desktop-navbar {
    display: none;
  }

  .navbar {
    display: flex;
  }

  /* Fix content under fixed navbar */
  .main-content {
    margin-left: 0;
    padding: 80px 15px 15px;
    }
  
    /* Venue layout */
    .venue-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .venue-image {
      margin: 0 auto;
    }
  }







/* remove default spacing */

.section {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;

  background-image: url("contactbg.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
}

.section::before {
  top: 0;
}

.section::after {
  bottom: 0;
}

.content {
  text-align: center;
  z-index: 1;
}



/* line breaker */

.linebreak {
  width: 90%;
   margin: 5px auto; 
   border: 2px solid rgb(192, 186, 159);

}



/* end of line breaker */





/* Collapse groups */

accordion {
  max-width: 500px;
  margin: auto;
}

.accordion-item {
  background: #e7e5df;
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(29, 28, 28, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Arrow icon */
.icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.accordion-item.active .icon {
  transform: rotate(-135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

.accordion-content ul {
  padding: 10px 0 16px 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 6px;
  color: #444;
}





/* Venue section 2 */


/* Venue Section */
.venue-section2 {
  display: flex;
  align-items: center;
  gap: 3vh;
}

@media (max-width: 768px) {
  .venue-section2 {
    flex-direction: column;
    text-align: center;
  }

  .venue-image2 {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}

/* Venue section 2 end */