/* -------------------------
   Global / Reset
   ------------------------- */
* { margin:0; padding:0; box-sizing:border-box; font-family:"Tahoma",sans-serif; }
body { background:#fdfdfd; color:#222; overflow-x:hidden; }

/* -------------------------
   Header / Navbar
   ------------------------- */
.navbar{
  position:fixed; top:0; left:0; right:0;
  height:70px; display:flex; justify-content:space-between; align-items:center;
  padding:0 30px; background:rgba(255,255,255,0.95); backdrop-filter:blur(8px);
  border-bottom:1px solid #eee; z-index:1000;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ height:50px; display:block; }
.logo span{ font-size:1.8rem; font-weight:800; color:#222; letter-spacing:1px; }
.nav-links{ display:flex; gap:25px; list-style:none; }
.nav-links a{ color:#222; text-decoration:none; font-weight:600; transition:0.25s; }
.nav-links a:hover{ color:#ffa07a; }

/* -------------------------
   Sections + Parallax
   ------------------------- */
.section{
  min-height:100vh; display:flex; justify-content:center; align-items:center;
  text-align:center; padding:20px; position:relative; color:#222;
}
.parallax{
  background-size:cover; background-position:center; background-attachment:fixed;
}

.section .content {
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.section .content::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  z-index: -1;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;   /* ↓ reduced exposure */
  z-index:0;
}


/* Chakra-inspired pastel overlays (image-safe) */

/* HOME – intuition / creativity (lavender) */
#home::before{
  background: rgba(218, 212, 255, 1);
}

/* COURSES – creativity / joy (peach) */
#courses::before{
  background: rgba(255, 219, 186, 1);
}

/* ABOUT – compassion / growth (mint green) */
#about::before{
  background: rgba(204, 239, 220, 1);
}

/* CONTACT – communication / calm (baby blue) */
#contact::before{
  background: rgba(210, 232, 255, 1);
}


/* content: transparent (no rectangle) */
.content{
  max-width:900px; width:100%; padding:0; background:transparent;
  opacity:0; transform:translateY(40px); transition:0.9s ease-out; position:relative; z-index:2;
}
.content p{ margin-top:12px; }

/* bigger text for sections (except header & contact) */
#home .home-text{ font-size:3rem; font-weight:700; }
#home p{ font-size:1.25rem; }
#courses h2{ font-size:3.2rem; margin-bottom:18px; }
.about-left h2{ font-size:2.4rem; margin-bottom:12px; }
.about-left p, .about-right p{ font-size:1.15rem; line-height:1.6; }

/* show class */
.show{ opacity:1 !important; transform:translateY(0) !important; }

/* -------------------------
   Restored centered carousel
   ------------------------- */
.carousel-container{
  margin-top:22px; width:100%; display:flex; justify-content:center; overflow:hidden;
}
.carousel-track{
  display:flex; gap:25px;
  width:max-content;
  animation: scroll 18s linear infinite;
}
/* card */
.course-card{
  position:relative; min-width:220px; height:300px; border-radius:18px; overflow:hidden;
  cursor:pointer; transition:transform .28s ease, box-shadow .28s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.10);
  background:#fff;
}
.course-card img{ width:100%; height:100%; object-fit:cover; display:block; }
.course-card span{
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  font-size:1.25rem; font-weight:700; background:rgba(255,255,255,0.85); padding:6px 12px; border-radius:10px;
  color:#222;
}
/* glow hover */
.course-card:hover{
  transform:scale(1.06);
  box-shadow: 0 0 28px rgba(151,102,255,0.42), 0 0 40px rgba(255,145,110,0.18);
}
.course-card:hover img{ filter:brightness(1.05); }

/* smooth scroll stop-gap for small screens */
@media (max-width:900px){
  .carousel-track{ gap:18px; animation-duration:20s; }
  .course-card{ min-width:180px; height:260px; }
  #home .home-text{ font-size:2.2rem; }
  #courses h2{ font-size:2.4rem; }
  .logo span{ font-size:1.4rem; }
}

/* keyframes scroll: moves track left by half (duplicate cards allow seamless loop) */
@keyframes scroll{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* about grid */
.about-grid{ display:flex; flex-wrap:wrap; gap:36px; justify-content:center; align-items:flex-start; width:100%; }
.about-left{ flex:1; min-width:280px; text-align:left; z-index:2; }
.about-right{ flex:1; min-width:280px; text-align:left; z-index:2; }

#about {
  color: white;
}
#contact {
  color: white;
}
#courses {
  color: white;
}
#home {
  color: white;
}
/* CONTACT SECTION TEXT WHITE */
#contact .content, 
#contact .content h2, 
#contact .content p {
  color: white !important;
}

/* SOCIAL ICONS */
.socials {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.socials img {
  width: 35px;
  height: 35px;
  filter: brightness(1);
  transition: 0.3s ease;
}

.socials img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0px 0px 6px white);
}

/*DONATE*/
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.donate-btn {
  background: #ff6b6b;
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: #ff3b3b;
  transform: scale(1.06);
}
/* Course Page Styling */
.pastel-section {
  background: #ffe8e8;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

.course-content {
  max-width: 850px;
  background: rgba(255,255,255,0.7);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0,0,0,0.07);
  transform: translateY(40px);
  opacity: 0;
  transition: 0.9s ease-out;
}

.course-content.show {
  opacity: 1;
  transform: translateY(0);
}

.course-image {
  width: 260px;
  margin: 25px auto;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.course-list {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 40px;
}

.enroll-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #ff8fa3;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.enroll-btn:hover {
  transform: scale(1.07);
  background: #ff7690;
}
/* ---------- Embroidery Page Overlay Box ---------- */
.overlay-box {
  width: 100%;
  max-width: 10000px;
  margin: 0 auto;
  padding: 35px;
  text-align: center;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);

  color: #fff;
}
/* GALLERY*/
/* ---------- EVENTS + GALLERY SECTION ---------- */
#events-gallery {
  color: white;
}

.events-gallery-section {
  max-width: 1100px;
  text-align: center;
}

.events-gallery-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.events-sub {
  font-size: 1.2rem;
  margin-bottom: 50px;
}

/* EVENTS GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.event-card {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: 0.35s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-card h3 {
  margin: 18px 15px 8px;
  font-size: 1.4rem;
}

.event-card p {
  font-size: 1rem;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* ------------------------------
   Gallery Page Styles
--------------------------------*/
.gallery-page {
  padding: 120px 8%;
  text-align: center;
  background: #000; /* dark background */
  color: #fff;
}

.gallery-page h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.gallery-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  opacity: 0.85;
}

/* ------------------------------
   Grid Layout
--------------------------------*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* Common gallery item styling */
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255,255,255,0.15);
}

/* Images inside gallery items */
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* YouTube Video items */
.video-item iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-item iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(255,255,255,0.12);
}

/* ------------------------------
   Modal / Lightbox
--------------------------------*/
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
}

.modal-img,
.modal-video-container iframe {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
}

.modal-close {
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 30px;
}

.modal-video-container {
  display: none;
  width: 100%;
  height: 100%;
}

/* ------------------------------
   Mobile / Responsive
--------------------------------*/
@media (max-width: 768px) {
  .gallery-item img,
  .video-item iframe {
    height: 200px;
  }
}


/* Pastel overlay for this section */
#events-gallery::before {
  background: rgba(232, 214, 255, 1); /* soft lavender */
  opacity: 0.25;
}

/* ---------- GALLERY CAROUSEL ---------- */
#gallery h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

.carousel-container {
  margin-top: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 18s linear infinite;
}

.gallery-card {
  min-width: 220px;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform .28s ease, box-shadow .28s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* glow hover */
.gallery-card:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(151,102,255,0.42), 0 0 40px rgba(255,145,110,0.18);
}
.gallery-card:hover img {
  filter: brightness(1.05);
}

/* smooth scroll stop-gap for small screens */
@media (max-width:900px) {
  .carousel-track { gap: 18px; animation-duration:20s; }
  .gallery-card { min-width:180px; height:220px; }
  #gallery h2 { font-size:2.4rem; }
}

/* keyframes scroll (same as courses) */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* GALLERY PAGE */
.gallery-page {
  padding: 120px 8%;
  background: #000;
  color: #fff;
  text-align: center;
}

.gallery-page h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.gallery-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  opacity: 0.85;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255,255,255,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-grid img {
    height: 200px;
  }
}

/* Make about section relative */
#about {
  position: relative;
}

/* ABOUT SECTION */
.section.parallax {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 80px 20px;
  color: white;
  font-family: Arial, sans-serif;
}

/* GRID CONTAINER */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  background-color: rgba(0,0,0,0.5); /* overlay for readability */
  padding: 40px;
  border-radius: 12px;
}

/* LEFT COLUMN */
.about-left {
  flex: 1 1 55%;
  padding-right: 20px;
}

/* RIGHT COLUMN */
.about-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
}

/* HEADINGS AND PARAGRAPHS */
.about-left h2,
.about-right h3 {
  margin-bottom: 15px;
}

.about-left p,
.about-right p {
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FOUNDER WRAPPER */
.founder-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 20px;
  gap: 20px;
}

/* FOUNDER IMAGE */
.founder-image {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
}

/* FOUNDER TEXT */
.founder-text {
  flex: 1 1 calc(100% - 220px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    flex-direction: column;
  }
  .about-left, .about-right {
    flex: 1 1 100%;
    padding-right: 0;
  }
  .founder-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .founder-text {
    text-align: center;
  }
  .founder-image img {
    width: 180px;
    height: 180px;
  }
}

.founder-image h4 {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

.founder-image span {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #ddd;
}
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}

.profile-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.profile-text {
  margin-top: 12px;
}
.designation{
  font-weight: lighter;
}
.profile-text .name {
  font-size: 18px;
  font-weight: bold;
}

.profile-text .designation {
  font-size: 14px;
  opacity: 0.85;
}

/* EVENTS SECTION REUSE */
.events-section {
  position: relative;
  background: url('images/events-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.events-content {
  position: relative;
  max-width: 1400px;
  margin: auto;
  text-align: center;
  color: #fff;
}

/* TIMETABLE CARD (REPLACES EVENT CARDS) */
.timetable-card {
  background: rgba(255,255,255,0.7); /* Reduced from 0.95 to 0.2 */
  /* backdrop-filter: blur(10px); */
  border-radius: 18px;
  padding: 25px;
  margin-top: 40px;
  overflow-x: auto;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.9s ease;
}

.timetable-card.show {
  transform: translateY(0);
  opacity: 1;
}

/* TABLE STYLE */
.timetable-table {
  width: 100%;
  border-collapse: collapse;
  color: #000000;
  font-size: 14px;
}

.timetable-table th {
  border: 1px solid #ddd;
  background: #222;
  color: #fff;
  padding: 10px;
}

.timetable-table td {
  border: 1px solid #ddd;
  padding: 8px;
}

.timetable-table td.day {
  font-weight: 600;
  background: #908e8e;
}

/* MOBILE */
@media (max-width: 768px) {
  .timetable-table {
    font-size: 12px;
  }
}
/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* UPCOMING EVENTS */
.upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* FORCE 5 IN ONE ROW */
  gap: 30px;
  margin-top: 40px;
}

/* Note text */
.poster-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
}

/* Responsive fallback for tablets */
@media (max-width: 1200px) {
  .upcoming-events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive fallback for mobiles */
@media (max-width: 768px) {
  .upcoming-events-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Poster wrapper – NO card styling */
.event-poster-card {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
}

/* REMOVE white box COMPLETELY */
.event-poster {
  background: none;      /* 🔴 IMPORTANT */
  box-shadow: none;      /* 🔴 IMPORTANT */
  border-radius: 0;
  overflow: visible;
  text-align: center;
}

/* Poster image (A4 vertical look) */
.event-poster img {
  width: 100%;
  height: 360px;
  object-fit: contain;     /* no cropping */
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Optional hover zoom (safe) */
.event-poster img:hover {
  transform: scale(1.03);
}

/* Modal zoom */
.poster-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

.poster-modal-img {
  max-width: 90%;
  max-height: 90%;
}

.poster-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}

/*TIME TABLE BULLET LIST CORRECTION*/
/* Center bullet points WITH text – FIXED alignment */
#timetable-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

#timetable-card ul li {
  display: flex;
  justify-content: center;   /* centers the whole row */
  align-items: flex-start;   /* prevents vertical misalignment */
  gap: 6px;
  margin: 4px 0;
  font-size: 16px;
}

/* Bullet with fixed width so ALL lines align */
#timetable-card ul li::before {
  content: "•";
  display: inline-block;
  width: 12px;              /* FIXED bullet column */
  text-align: center;
  line-height: 1.4;
}

/* -------------------------
   GALLERY PAGE ADJUSTMENTS
   ------------------------- */
.gallery-page h2 {
  font-size: 2.5rem;
  margin-top: 60px;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.gallery-page .gallery-sub {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.85;
  text-align: center;
}

/* VIDEO ITEMS */
.gallery-item.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
  height: 260px; /* match gallery image height */
}

.gallery-item.video-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
}

/* Ensure Videos grid behaves like Images grid */
.gallery-grid.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 50px;
}

/* -------------------------
   Gallery Page
------------------------- */
.gallery-page {
  padding: 120px 8%;
  background: #000;
  color: #fff;
  text-align: center;
}

.gallery-page h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.gallery-sub {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  opacity: 0.85;
  text-align: center;
}

/* Photo Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

/* -------------------------
   Media Gallery Section
------------------------- */
.media-gallery {
  position: relative;
  padding: 120px 8%;
  text-align: center;
  color: #fff;
  background-image: url('images/be.jpg');
  background-size: cover;
  background-position: center;
}

.media-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.media-gallery > * {
  position: relative;
  z-index: 1;
}

.media-gallery h1,
.media-gallery .gallery-sub {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

/* Media Gallery Videos Grid */
.gallery-grid.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  justify-items: center;
  margin-top: 40px;
}

.gallery-item.video-item {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item.video-item iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

/* Hover effect */
.gallery-item.video-item iframe:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;  /* logo left, menu right */
  align-items: center;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

/* Logo (left side) */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px; /* logo size */
}

.logo span {
  font-size: 1.8rem;
  font-weight: 800;
}

/* Right side container for enroll button and hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Enroll button */
.donate-btn {
  padding: 10px 18px;
  background-color: #ff6b6b; /* coral/red */
  color: white;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* Hamburger menu */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none; /* show on mobile */
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}



/* ===============================
   MOBILE NAV FIX
================================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {

  /* Keep navbar in ONE ROW */
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide nav links by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* Show when active */
  .nav-links.active {
    display: flex;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }
}