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

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #1c1c1c;
  background-color: #fff;
  line-height: 1.5;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #d59b84;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #d59b84;
    flex-direction: column;
    width: 100%;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    border-top: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

  .nav-links.active {
    max-height: 300px;
    transition: max-height 0.3s ease-in;
  }

  /* Animate hamburger into X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  background-color: #d59b84;
  color: #fff;
  min-height: 100vh;
}

.hero-text {
  flex: 1;
  padding: 4rem 2rem;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1rem;
  color: #fff;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* About Section */
.about-section {
  background-color: #e6e1da;
  padding: 60px 0;
}

.about-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  min-height: 400px;
  background: linear-gradient(to bottom, #8B4513, #DEB887);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: white;
  font-size: 1.2rem;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.quote span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-text {
  flex: 1;
  padding: 40px;
  background-color: #f3f0ea;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Events Section */
.events {
  background-color: #f0ece3;
  text-align: center;
  padding: 4rem 2rem;
}

.events h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.event {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event h3 {
  margin-bottom: 10px;
}

.event p {
  margin: 5px 0;
}

.event a {
  display: inline-block;
  margin-top: 10px;
  background-color: #000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.event a:hover {
  background-color: #333;
}

/* Contact Section */
.contact {
  background-color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact p {
  margin: 0.5rem 0;
}

.contact a {
  color: #d59b84;
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    word-break: break-word;
  }

  .hero-text {
    padding: 2rem 1rem;
  }

  .overlay-text {
    font-size: 1.5rem;
  }
  
  .about-container {
    flex-direction: column;
  }
}