/* Reset & Root */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff4081;
  --secondary: #ff6ec4;
  --dark: #1a1a1a;
  --darker: #0f0f0f;
  --light: #f5f5f5;
  --text-dark: #333;
  --text-light: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 64, 129, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav animation */
.navbar ul {
  display: flex;
  gap: 45px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.navbar a.active::after,
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  left: 0;
  bottom: -8px;
  transition: width 0.3s ease;
}

.navbar a.active::after {
  width: 100%;
}

.navbar a:hover {
  color: var(--secondary);
}

.navbar a:hover::after {
  width: 100%;
}

/* Hero split layout */
#hero {
  display: flex;
  height: 100vh;
  margin-top: 70px;
}

/* Left image */
.hero-left {
  flex: 1;
  background: url("../images/WhatsApp\ Image\ 2026-03-12\ at\ 1.21.09\ AM.jpeg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.3), rgba(255, 110, 196, 0.2));
}

/* Right content */
.hero-right {
  flex: 1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  animation: slideIn 0.8s ease;
}

/* Text styles */
.hero-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
    font-style: italic;
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Address box */
.address {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 64, 129, 0.1);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.address-item:hover {
  background: rgba(255, 64, 129, 0.15);
  transform: translateX(5px);
}

.address-item .icon {
  font-size: 24px;
  min-width: 30px;
}

.address-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.address-item p {
  font-size: 14px;
  color: #ddd;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 30px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  box-shadow: 0 5px 25px rgba(255, 64, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 64, 129, 0.5);
}

/* Animation */
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* About & Contact Pages Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 20px 50px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header nav ul {
  display: flex;
  gap: 45px;
  list-style: none;
  margin-top: 15px;
}

header nav a {
  text-decoration: none;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

header nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  left: 0;
  bottom: -8px;
  transition: width 0.3s ease;
}

header nav a.active::after {
  width: 100%;
}

header nav a:hover {
  color: var(--secondary);
}

header nav a:hover::after {
  width: 100%;
}

/* About & Contact Hero Section */
body.about #hero,
body.contact #hero {
  height: 50vh;
  margin-top: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.about #hero::before,
body.contact #hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 64, 129, 0.2), transparent);
  z-index: 1;
}

.overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Main Content */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 50px;
}

main section {
  margin-bottom: 50px;
}

main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

main h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

main p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

main ul {
  list-style: none;
  padding-left: 0;
}

main li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  font-size: 16px;
}

main li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 12px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 8px;
}

input,
textarea {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  color: var(--text-dark);
  background: #f9f9f9;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button[type="submit"] {
  padding: 12px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  align-self: flex-start;
  box-shadow: 0 5px 25px rgba(255, 64, 129, 0.3);
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(255, 64, 129, 0.5);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
  font-size: 14px;
  border-top: 2px solid rgba(255, 64, 129, 0.2);
}

/* Cards & Events Page */
body.events {
  background: var(--light);
}

body.events main {
  padding: 80px 50px;
}

body.events #hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

body.events #hero .hero-content p {
  color: #ccc;
  font-size: 18px;
  margin-top: 10px;
}

/* Section Styling */
.section-videos,
.section-gallery,
.section-upcoming {
  margin-bottom: 80px;
}

.section-subtitle {
  color: #888;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Card Styling */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 64, 129, 0.15);
}

/* Card Media */
.card-media {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
}

.card-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-image:hover .card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.icon-zoom {
  color: var(--text-light);
  font-size: 36px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-image:hover .icon-zoom {
  opacity: 1;
}

/* Card Content */
.card-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.card-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.card-content p {
  font-size: 14px;
  color: #666;
  flex: 1;
  margin-bottom: 15px;
  line-height: 1.6;
}

.card-description {
  color: #777;
}

/* Card Meta */
.card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.date,
.category {
  display: inline-block;
  font-size: 13px;
  color: #888;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 20px;
  font-weight: 500;
}

.category {
  color: var(--primary);
  background: rgba(255, 64, 129, 0.1);
}

/* Video Cards */
.card-video .card-media {
  padding-bottom: 56.25%;
}

/* Image Cards */
.card-image .card-media {
  padding-bottom: 66.66%;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-card {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.event-card:hover {
  border-left-color: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(255, 64, 129, 0.15);
}

.event-date {
  min-width: 80px;
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  border-radius: 8px;
  font-weight: 600;
}

.event-date .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date .day {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.event-details {
  flex: 1;
}

.event-details h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}

.event-details p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.event-location {
  display: inline-block;
  font-size: 13px;
  color: #888;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 20px;
}

.btn-small {
  padding: 10px 25px;
  font-size: 12px;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-container,
  header {
    padding: 15px 25px;
  }

  .logo {
    font-size: 22px;
  }

  .navbar ul,
  header nav ul {
    gap: 20px;
  }

  .navbar a,
  header nav a {
    font-size: 13px;
  }

  #hero {
    margin-top: 100px;
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-left {
    min-height: 300px;
  }

  .hero-right {
    padding: 60px 30px;
  }

  .hero-right h2 {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
  }

  .btn {
    align-self: center;
  }

  main {
    padding: 40px 25px;
  }

  main h3 {
    font-size: 24px;
  }

  body.about #hero,
  body.contact #hero {
    height: 40vh;
    margin-top: 100px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .event-date {
    min-width: 100%;
  }

  body.events main {
    padding: 60px 25px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    flex-direction: column;
    gap: 15px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-right {
    padding: 40px 20px;
  }

  .hero-right h2 {
    font-size: 28px;
  }

  .address-item {
    padding: 15px;
  }

  main {
    padding: 30px 15px;
  }

  main h3 {
    font-size: 20px;
  }

  form {
    gap: 15px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .event-card {
    padding: 20px;
    gap: 15px;
  }

  .event-details h4 {
    font-size: 16px;
  }

  .event-details p {
    font-size: 13px;
  }

  body.events main {
    padding: 40px 15px;
  }

  .event-date .day {
    font-size: 24px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h4 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 13px;
  }
}