.header {
    background: linear-gradient(135deg, #ffffff, #ffffff); /* Gradient from a bright pink to a softer pink */
    color: #fff;
    text-align: center;
    padding: 50px 20px; /* Generous padding */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.header h1 {
    font-size: 3.5rem;
    color: #c9302c;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.header p {
    font-size: 1.4rem;
    color: #555;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Container */
.about_section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdfdfd, #f3f3f3);
  font-family: "Poppins", sans-serif;
}

.about_section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Media (Photo + Video) */
.media-box {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-box .photo img,
.media-box .video video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.media-box .photo img:hover,
.media-box .video video:hover {
  transform: scale(1.02);
}

/* Details */
.detail-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.detail-box h2 {
  font-size: 28px;
  color: #d4a017; /* Gold color */
  margin-bottom: 15px;
}

.detail-box .desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.detail-box .info p {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
}

.detail-box .info a {
  text-decoration: none;
  color: #d4a017;
  font-weight: 600;
  transition: color 0.3s ease;
}

.detail-box .info a:hover {
  color: #a87f00;
}

/* Responsive */
@media (max-width: 768px) {
  .about_section .container {
    flex-direction: column;
  }
}
