@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* New Header Styling */
.new-header {
  background-color: #522d80;
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.new-header h1 {
  font-size: 2.2rem;
  margin: 0;
  flex: 1 1 300px;
}

.new-header nav {
  flex: 2 1 600px;
}

#new-navbar {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

#new-navbar li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

#new-navbar li a:hover {
  background-color: #f56600;
}

#new-navbar li a.active {
  background-color: #f56600;
}

.main-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery {
  flex: 0 0 300px;
}

.gallery-item {
  background: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0px #000;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about {
  flex: 1;
}

.about h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
}

.about-content {
  font-size: 1.5rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content strong {
  font-weight: 600;
  color: #000;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .new-header h1 {
    font-size: 1.8rem;
  }

  #new-navbar {
    justify-content: center;
    gap: 10px;
  }

  .main-content {
    flex-direction: column;
  }

  .gallery {
    flex: none;
    width: 100%;
  }

  .gallery-item {
    margin-bottom: 1.5rem;
  }
}
