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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f6f8fa;
  color: #1a1a1a;
  line-height: 1.6;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #e63946, #1d3557);
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

header p {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

.logo {
  height: 60px;
  margin-bottom: 10px;
}

nav {
  margin-top: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero .banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 20px;
}

.hero .overlay .tagline {
  font-size: 1.6rem;
  font-weight: 600;
  max-width: 700px;
  line-height: 1.4;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

/* MAIN CONTENT */
.content {
  max-width: 900px;
  background: #fff;
  padding: 40px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.content h2 {
  color: #e63946;
  margin-bottom: 15px;
}

.content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.btn {
  background: #1d3557;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #457b9d;
}

/* ===== Carousel Styles ===== */
.party-carousel {
  width: 100%;
  overflow: hidden;
  background: #f5f7fa;
  padding: 20px 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.carousel-track {
  display: flex;
  width: calc(250px * 8);
  animation: scrollImages 20s linear infinite;
}

.carousel-track img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
  transition: transform 0.3s ease-in-out;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

@keyframes scrollImages {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* LEADERS SECTION */
.leader-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  background: #fafafa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.leader-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #e63946;
  border: none;
  padding: 12px;
  color: white;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #b81f2d;
}

/* FOOTER */
footer {
  background: #1d3557;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

footer .social a {
  color: #fff;
  text-decoration: none;
  margin: 0 6px;
  transition: 0.3s;
}

footer .social a:hover {
  text-decoration: underline;
}