/* --------------------------
   Global Reset and Base Styles
--------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: black url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --------------------------
   Header
--------------------------- */
header {
  background-color: white;
  height: 4rem;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  color: black;
  text-decoration: none;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: black;
  user-select: none;
  z-index: 2000;
}

.nav-links {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 1000;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* --------------------------
   Main Content and Typography
--------------------------- */
main {
  flex: 1;
  max-width: 800px;
  margin: auto;
  padding: 40px 20px 80px 20px;
  text-align: center;
}

main h1 {
  font-size: 3rem;
  text-shadow: 0 0 15px black;
}

.hero p,
.content p,
.contact p {
  font-size: 1.5rem;
  line-height: 1.8;
  text-shadow: 0 0 15px black;
}

.contact p {
  text-shadow: 0 0 25px black;
}

.aboutus p {
  font-size: 1.3rem;
  line-height: 1.4;
  text-shadow: 0 0 50px black;
}

/* --------------------------
   Buttons
--------------------------- */
.btn,
.event-btn
 {
  background-color: rgb(107, 93, 75);
  color: white;
  padding: 18px 28px;         /* Increased padding */
  font-size: 1.2rem;          /* Larger text */
  border: none;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin: 20px 10px;          /* More spacing between buttons */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn.back {
  margin-top: 30px; /* Pushes it farther down */
}


.btn:hover,
.event-btn:hover,
.btnW:hover {
  background-color: rgb(90, 78, 63);
}

.btnW {
  background-color: rgb(107, 93, 75);
  color: white;
  padding: 12px 20px;
  border: none;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin: 8px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* --------------------------
   Forms
--------------------------- */
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

/* --------------------------
   Lists
--------------------------- */
ul {
  list-style: none;
  padding: 0;
}

/* --------------------------
   Footer
--------------------------- */
footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* --------------------------
   Box Components
--------------------------- */
.about-box,
.contact-box,
.hero-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.about-box {
  padding: 20px;
  font-size: 1rem;
  text-align: left;
  line-height: 1;
}

.contact-box {
  padding: 30px;
  text-align: left;
  line-height: 1.6;
}

.hero-box {
  padding: 40px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-box {
    padding: 15px;
  }
}

/* --------------------------
   Modal Styles
--------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
  padding: 20px;
}

.modal-content {
  background-color: white;
  color: black;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-btn {
  float: right;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* --------------------------
   Responsive Styles
--------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    width: 180px;
    z-index: 1500;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .btn {
    padding: 18px 28px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    right: 0;
    left: 0;
    top: 50px;
    border-radius: 0;
    width: auto;
  }

  main {
    margin: 20px 15px;
    padding: 20px 15px;
    max-width: 100%;
  }

  .btn,
  .contact-form .btn {
    width: 100%;
    padding: 20px 0;
    font-size: 1.2rem;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.1rem;
    padding: 15px;
  }
}

.modal-content {
  background-color: #cbc9c3;
}
