/* Culture CSS — refined to match site aesthetic */

/* Hero */
.culture-hero {
  position: relative;
  background: url(images/culturee\ \(2\).jpg) center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.culture-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.culture-hero .hero-content {
  position: relative;
  z-index: 2;
}
.culture-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}
.culture-hero p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Main container */
.culture-main {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: auto;
}

/* Featured Article */
.feature-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.feat-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feat-text p {
  color: #444;
  margin-bottom: 1.5rem;
}
.btn-read {
  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  transition: background 0.3s;
}
.btn-read:hover {
  background: #444;
}
.feat-img img {
  width: 100%;
  border-radius: 12px;
}

/* Alternating Stories */
.story-section .story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.story.reverse {
  direction: rtl;
}
.story.reverse .text {
  direction: ltr; /* to keep text readable */
}
.story .text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.story .text p {
  color: #555;
  margin-bottom: 1rem;
}
.story .text a {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
}
.story .img img {
  width: 100%;
  border-radius: 10px;
}

/* Themes Grid */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.theme-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s;
}
.theme-item:hover {
  transform: translateY(-4px);
}
.theme-item h4 {
  margin-bottom: 0.8rem;
  color: #111;
}
.theme-item p {
  color: #555;
  margin-bottom: 1.2rem;
}
.theme-item a {
  color: #111;
  font-weight: bold;
  text-decoration: none;
}
.theme-item a:hover {
  text-decoration: underline;
}

/* CTA Section */
.culture-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2.5rem 1rem;
  background: #111;
  color: #fff;
  border-radius: 10px;
}
.culture-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.culture-cta p {
  color: #ccc;
  margin-bottom: 1.5rem;
}
.btn-submit {
  text-decoration: none;
  background: #fff;
  color: #111;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.btn-submit:hover {
  background: #111;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .feature-article, .story-section .story {
    grid-template-columns: 1fr;
  }
  .culture-hero h1 {
    font-size: 2.3rem;
  }
}
