* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  /* Page-level fade-in for a soft initial load */
  animation: fadeInBody 500ms ease-out both;
  will-change: opacity;
}
@keyframes fadeInBody {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Link and Focus Micro-interactions ===== */
a,
.btn,
button {
  transition: color 200ms ease, background-color 220ms ease,
    box-shadow 220ms ease, transform 180ms ease;
  will-change: color, background-color, box-shadow, transform;
}
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
.pill:focus-visible {
  outline-offset: 2px;
  transition: outline-offset 160ms ease;
}

/* ===== Buttons ===== */
.header-btn {
  padding: 10px 15px;
  background: linear-gradient(180deg, #ff9b45, #ff7b00);
  color: #000000;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  font-size: 12px;
  transition: background-color 200ms ease, color 160ms ease,
    transform 160ms ease, box-shadow 200ms ease;
  will-change: background-color, transform, box-shadow;
}
.header-btn:hover {
  background-color: #f7893f;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 122, 38, 0.25);
  text-decoration: none;
}
.header-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(245, 122, 38, 0.2);
}

.header {
  background: #fff;
  padding: 1rem 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 260ms ease, box-shadow 260ms ease,
    backdrop-filter 260ms ease, transform 260ms ease;
  will-change: background-color, box-shadow, backdrop-filter, transform;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  height: 40px;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 180ms ease;
  will-change: transform;
}
/* .header-logo a:hover {
  transform: scale(1.03);
} */
.header.sticky {
  position: fixed;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);

  animation: headerDrop 280ms ease-out both;
}
@keyframes headerDrop {
  from {
    transform: translateY(-12px);
    opacity: 0.92;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #000000;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 220ms ease;
  will-change: width;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

/* Active nav link */
.nav-links a.active {
  color: #000000; /* Highlight color */
  font-weight: 600;
}
.nav-links a.active::after {
  width: 100%;
  background: #000000; /* Same as highlight */
}

.nav-action {
  margin-left: auto;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  /* color: #fff; */
  cursor: pointer;
  margin-left: 30px;
  transition: transform 160ms ease;
}
.navbar-toggle:active {
  transform: scale(0.96);
}

.footer {
  background-color: #080857;
  color: #ffffff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  animation: riseIn 480ms ease-out both;
  will-change: transform, opacity;
}
@keyframes riseIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
  transition: transform 200ms ease, opacity 220ms ease;
  will-change: transform, opacity;
}
/* .footer-column:hover {
  transform: translateY(-2px);
} */
.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 20px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 200ms ease, transform 160ms ease;
}
.footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* ===== Logo & Social ===== */
.logo {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a img {
  width: 35px;
  height: 35px;
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform, filter;
}
.social-icons a:hover img {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/* ===== Newsletter ===== */
.newsletter-section {
  flex: 1 1 300px;
  min-width: 280px;
}
.newsletter-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}
.newsletter-subtext {
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 20px;
  line-height: 1.6;
}
.newsletter-container {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #ffffff, #f9f9f9, #ffffff);
  border-radius: 50px;
  padding: 5px;
  max-width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
  will-change: transform, box-shadow;
}
.newsletter-container:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 10px;
  font-size: 14px;
  color: #555;
  background: transparent;
  border-radius: 50px 0 0 50px;
}
.newsletter-input::placeholder {
  color: #999;
  opacity: 1;
  transition: opacity 160ms ease;
}
.newsletter-input:focus::placeholder {
  opacity: 0.6;
}
.newsletter-button {
  background: linear-gradient(180deg, #ff9b45, #ff7b00);
  color: #fff;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 200ms ease, transform 140ms ease,
    box-shadow 220ms ease;
  white-space: nowrap;
  will-change: transform, box-shadow, background-color;
}
.newsletter-button:hover {
  background-color: #e02580;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 43, 146, 0.35);
}
.newsletter-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 43, 146, 0.25);
}

/* ===== Layout Containers ===== /
/ assets/css/style.css */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.facillitycontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  padding: 100px 0 40px;
  animation: heroIn 520ms ease-out both;
  will-change: transform, opacity;
}
@keyframes heroIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 600ms ease, box-shadow 260ms ease;
  will-change: transform, box-shadow;
}
.hero-card:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
  z-index: 1;
}
.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 780px;
  animation: contentUp 560ms 60ms ease-out both;
  will-change: transform, opacity;
}
@keyframes contentUp {
  from {
    transform: translate(-50%, calc(-50% + 10px));
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1.05;
}
.hero-content .lead {
  font-size: 14px;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 18px;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, #ff9b45, #ff7b00);
  color: white;
  box-shadow: 0 6px 18px rgba(255, 123, 0, 0.16);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform, box-shadow, filter;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 123, 0, 0.22);
  filter: saturate(1.05);
}
.hero-footer {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.section {
  padding: 36px 0 40px;
}
.section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;

  animation: fadeInSoft 360ms ease-out both;
}
@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1b1b1b;
}
.section .view-all {
  background: linear-gradient(180deg, #ff9b45, #ff7b00);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 200ms ease, transform 160ms ease,
    box-shadow 200ms ease;
}
.section .view-all:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(246, 139, 43, 0.24);
}

/* ===== Events Grid ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  /* background: #fff; */
  text-decoration: none;
  color: #222;
  transition: transform 220ms ease, box-shadow 240ms ease, filter 220ms ease;
  /* will-change: transform, box-shadow; */
}
.event-card:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); */
}
.event-thumb {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 600ms ease, box-shadow 260ms ease;
  will-change: transform, box-shadow;
}
.event-card:hover .event-thumb {
  transform: scale(1.015);
  /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); */
}
.event-info {
  padding-top: 10px;
}
.event-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 180ms ease;
}
.event-card:hover .event-title {
  color: #f68b2b;
}
.event-venue {
  font-size: 14px;
  color: #8a7361;
}

.center-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
}
.facilities-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-top: 18px;
}
.facilities-list .icon svg {
  width: 22px;
  fill: #000000;
  transition: transform 200ms ease, fill 180ms ease;
  will-change: transform;
}
.pill {
  border: 1px solid #e5dedb;
  padding: 10px 22px;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: normal;
  transition: transform 160ms ease, box-shadow 220ms ease,
    border-color 160ms ease;
  will-change: transform, box-shadow;
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: #e9dcd7;
}
.pill:hover .icon svg {
  transform: scale(1.08);
}

/* ===== Blog Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 18px;
}
.blog-card {
  background: #fff;
  transition: transform 220ms ease, box-shadow 240ms ease;
  will-change: transform, box-shadow;
}
.blog-card:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08); */
}
.blog-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: transform 600ms ease, box-shadow 260ms ease;
}
.blog-card:hover .blog-thumb {
  transform: scale(1.012);
}
.blog-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color 180ms ease;
}
.blog-card:hover h3 {
  color: #f68b2b;
}
.blog-card .excerpt {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 12px;
}
.meta {
  font-size: 12px;
  color: #9a9a9a;
}

/* ===== Ghost & Outline Buttons ===== */
.btn-ghost {
  background: #fff;
  color: #333;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #eee;
  transition: transform 160ms ease, box-shadow 220ms ease,
    border-color 160ms ease;
}
.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #e5e5e5;
}
.btn-outline {
  background: transparent;
  border: 2px solid #6b57ff;
  padding: 10px 26px;
  border-radius: 26px;
  color: #6b57ff;
  transition: transform 160ms ease, box-shadow 220ms ease,
    background-color 180ms ease, color 180ms ease;
}
.btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(107, 87, 255, 0.25);
  background-color: rgba(107, 87, 255, 0.06);
}

/* ===== Utility ===== */
.center {
  text-align: center;
  margin-top: 20px;
}
/* Blog Section */
.blog-section {
  text-align: center;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
}

.blog-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.blog-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 350px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.card-content p {
  font-size: 16px;
  color: #8a7361;
  margin-bottom: 5px;
}

.read-btn {
  display: inline-block;
  background: #f5f5f5;
  border: none;
  width: 100%;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.read-btn:hover {
  background: #ddd;
}

/* Organizer Section */
.organizer-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
  background: #fff;
  overflow: hidden;
}

.organizer-content {
  padding: 40px 20px;
}

.organizer-section h2 {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 10px;
  color: #000;
}

.organizer-section p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #444;
}

.organizer-btn {
  background: linear-gradient(180deg, #ff9b45, #ff7b00);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  transition: transform 0.3s ease;
}

.organizer-btn:hover {
  transform: scale(1.05);
}

/* Custom Borders */
.svg-border img {
  width: 100%;
  height: auto;
  display: block;
}

.top-border {
  margin-bottom: -5px;
}

.bottom-border {
  margin-top: -5px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
  .blog-section {
    padding: 0px;
  }
  .blog-card {
    width: 100%;
  }

  .organizer-section h2 {
    font-size: 20px;
  }

  .organizer-section p {
    font-size: 14px;
  }
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card {
    height: 550px;
  }
  .hero-content h1 {
    font-size: 22px;
  }
}
@media (max-width: 786px) {
  .events-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-content {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content .lead {
    font-size: 13px;
  }
  .facility-list {
    justify-content: center;
  }
}

/* ===== Mobile Nav & Footer Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    transition: height 220ms ease;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(255, 255, 255);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    z-index: 999;
    transform-origin: top;
    transform: scaleY(0.98);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
    will-change: opacity, transform;
  }
  .nav-links.active {
    display: flex;
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-action {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .navbar-toggle {
    display: block;
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    z-index: 999;
  }
  .footer-container {
    flex-direction: column;
    gap: 50px;
  }
  .newsletter-container {
    flex-direction: column;
    padding: 10px;
    border-radius: 30px;
  }
  .newsletter-input,
  .newsletter-button {
    width: 100%;
    border-radius: 50px;
    margin: 5px 0;
    text-align: center;
  }
  .newsletter-button {
    padding: 14px 25px;
  }
}
