:root {
  --header-bg: #000;
  --header-text: #ffffff;
  --border: rgba(255,255,255,0.15);
  --max: 1100px;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
}


/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* HEADER */
header {
  top: 0;
  background: var(--header-bg);
  z-index: 10;
}



/* container widths */
.header-container { margin: 0 auto; width: 90%; }



/* Brand */
.brand {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;                   /* aligns baseline nicely */
}

.logo {
  /* Give the container a defined size, or let it be flexible */
  width: 115px; /* Example width */
  /* height can be auto or fixed */
}

.logo img {
  max-width: 100%; /* Image will never be wider than the container */
  height: auto;    /* Height adjusts automatically to keep ratio */
  display: block;  /* Removes bottom spacing */
}

/* Nav */
.menu-btn {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;    
color: white;               /* aligns icon */
}

/* Mobile nav dropdown */










/* Page content (Keep sticky footer behavior) */
main {
  flex: 1;
  background: #ffffff;
}










a.text-link-orange {
    color: #ffffff;      /* Pure white */
    font-weight: bold;   /* Matches your style */
    text-decoration: none;
    transition: color 0.25s ease;
    font-size: 16px;
    display: inline-block;
}

a.text-link-orange:hover {
    color: orange;       /* Hover effect */
    text-decoration: underline;
}














main h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

main p {
  line-height: 1.6;
}




.indexheader {
  position: relative; /* Container for absolute video */
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-top: 70px;
  font-family: 'Poppins', sans-serif;
background: black;
}

/* New: Full background video styling */
.main-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none; /* Allows clicks to pass through to buttons */
}

/* Ensure content sits on top of video */
.page {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Video Tile inside the Bento Grid */
.video-item {
  position: relative;
  overflow: hidden;
}

.video-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: relative;            /* required for pseudo-element */
  width: 35%;
  margin-top: 60px;  
 margin-bottom: 30px; 
  text-align: center;
  color: #000;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .hero-text {
    width: 80%;       /* Change to 80% on mobile */
  }
}

.hero-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(525px, 92vw);
  height: min(525px, 92vw);
  background: #FAFFD2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


@media (max-width: 768px) {
  .hero-text {
    width: 90%;
  }
}

    .hero-text h1 {
font-size: clamp(22px, 5.2vw, 36px);
      font-weight: 600;
      letter-spacing: 3px;
      margin-top: 30px;
      margin-bottom: 12px;
      font-family: 'Poppins', sans-serif;

    }

    .hero-text p {
      font-size: clamp(18px, 2.5vw, 20px);
      font-weight: 300;
      opacity: 0.9;
      font-family: 'Poppins', sans-serif;
      margin-top: 30px;
color: #111;
    }

    /* Wrapper */
    .page {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    /* Stack hero + content vertically */
    .stack {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Center content column */
    .content {
      width: 92%;
      border-radius: 15px;
      color: white;
      padding: 40px;
      margin: 40px auto;
      margin-top: 100px;
    }

    .bento-grid {
      width: 98%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      grid-auto-rows: 150px;
      grid-auto-flow: dense;
      gap: 15px;
      padding: 5px;
    }

    .item {
      border-radius: 20px;
      overflow: hidden;
    }

    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.25s ease;
    }

    .item.wide { grid-column: span 2; }
    .item.tall { grid-row: span 2; }
    .item.big  { grid-column: span 2; grid-row: span 2; }

    .item:hover img {
      transform: scale(1.03);
    }

    @media (max-width: 600px) {
      .bento-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .item.big,
      .item.wide {
        grid-column: span 2;
      }
    }

    /* Mobile fix */
    @media (max-width: 768px) {
      header {
        background-attachment: scroll;
      }
    }

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* JOIN NOW BUTTON */
.join-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  border-radius: 999px;
background: orange;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.join-btn:hover {
  background: #FFCB00;
  color: white;
  transform: translateY(-2px);
}



/* ========= Events Page ========= */

/* Container styling from your file */

/* --- Events Grid Layout --- */

.events {
  display: grid;
  /* Creates 3 columns of equal width */
  grid-template-columns: repeat(3, 1fr); 
  /* Adds space between the cards */
}


.events-page-sub {
  margin: 0;
  font-size: 15px;
color:#111;
padding: 10px;
}

.event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden; /* Keeps image inside rounded corners */
  text-decoration: none; /* Removes underline from links */
margin: 0 !important;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%; /* Makes all cards in a row the same height */
}

.event-card:hover {
  border: 1px solid #111;
}

/* Force images to be the same size so rows align nicely */
.event-intro-img {
  width: 100%;
  background: #f0f0f0;
}

.event-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops image to fill the box without stretching */
  display: block;
}

.event-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes content to fill space */
  width: 94%;
  margin: 0 auto;
}

.event-title {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  width: 94%;
  margin: 0 auto;
}

.event-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  width: 94%;
  margin: 0 auto;
}

.event-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* Container for the pills */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/* The label container */
.pill {
    cursor: pointer;
    display: inline-block;
}

/* 1. Hide the actual ugly checkbox */
.pill input[type="checkbox"] {
    display: none;
}

/* 2. Style the text span (Default State) */
.pill span {
    display: block;
    padding: 8px 16px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 20px; /* Rounded pill shape */
    font-size: 0.9rem;
    color: #555;
    transition: all 0.2s ease;
    user-select: none; /* Prevents text highlighting when clicking rapidly */
}

/* 3. Hover State */
.pill:hover span {
    background-color: #e0e0e0;
}

/* 4. SELECTED State (When checkbox is checked) */
.pill input[type="checkbox"]:checked + span {
    background-color: #000; /* Your main orange color */
    color: white;
}

/* --- Responsive Design --- */

/* Tablets: 2 Columns */
@media (max-width: 900px) {
  .events {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 Column */
@media (max-width: 600px) {
  .events {
    grid-template-columns: 1fr;
  }
}

.event-hero {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  /* This clamp ensures a good height on all devices */
  height: clamp(220px, 36vw, 420px); 
  margin-top: 15px;
  border-radius: 18px;
}

/* Image scaling logic */
.detail-main-img {
  width: 100%;       /* Fills the container width */
  height: 100%;      /* Fills the container height */
  display: block;    /* Removes bottom whitespace gap */
  object-fit: cover; /* Prevents stretching; crops to fit the height */
}

/* Optional: if you don't already have these */
.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; background: #ffffff; }
.open-call-container {  margin: 0 auto; padding: 28px 16px; width: 90%; }

.page-head {
  margin: 10px auto 18px;
  width:  100%;
}

.page-head h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
color: white;
padding: 10px;
}



.event-container {  margin: 0 auto; padding: 28px 16px; width: 90%; }

/* The list wrapper */
.events {
  display: grid;
  gap: 14px;
  justify-items: center; /* centers the 90% cards */
}


.event-card {
  width: 100%;
  display: flex;
  gap: 14px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
}

.event-card:hover {
  border-color: #cbd5e1;
}



/* Image left */
.event-img {
  flex: 0 0 30%;
  max-width: 30%;
  background: #f1f5f9;
}

.event-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Text right */
.event-info {
  flex: 1;
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.event-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.event-meta {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.event-desc {
  margin: 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.55;

  /* keeps cards tidy */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile: stack image on top */
@media (max-width: 640px) {
  .event-card {
    width: 100%;2
    flex-direction: column;
  }

  .event-img {
    flex: none;
    max-width: 100%;
    height: 180px;
  }

  .event-info {
    padding: 14px;
  }
}

/* Desktop: slightly wider cards */
@media (min-width: 900px) {
  .event-card {
    width: min(900px, 90%);
  }
}


/* ========= Event Details Page ========= */

.back-link {
  display: inline-block;
  margin: 10px 0 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.back-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.event-detail {
  width: 100%;
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.event-hero {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  height: clamp(220px, 36vw, 420px);
}

.event-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.event-head {
  display: grid;
  gap: 12px;
padding: 10px;
}

.event-h1 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: white;
margin-bottom: 10px;
}

.event-badges {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.badge {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 12px 14px;
}

.badge-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.badge-value {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}

/* Content layout */
.detail-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.panel {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
}

.panel h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #334155;
}

.panel h3 {
  margin: 14px 0 8px;
  font-size: 15px;
  color: #334155;
}

.panel p {
  margin: 0;
  color: #334155;
  line-height: 1.65;
  font-size: 14px;
}

.bullet {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.65;
  font-size: 14px;
}

/* Schedule list */
.schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.schedule-time {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

.schedule-item {
  color: #334155;
  font-size: 13px;
}

/* Buttons */
.actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline {
  background: #ffffff;
  color: #000;
  border: 1px solid #cbd5e1;
}







/* Responsive improvements */
@media (min-width: 720px) {
  .event-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 980px) {
  .detail-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }

  .panel-side {
    top: 86px; /* below your sticky header */
  }
}

/* ========= Add Event Page ========= */

.notice {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  margin: 14px 0;
  color: #0f172a;
}

.notice ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
}

.notice.success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.notice.error {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
}

.event-form {
  width: 100%;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus {
  border-color: #000;
}

.form-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  /* Add this if the red box isn't stretching across the screen: */
  width: 100%; 
  font-family: 'Poppins', sans-serif;
}

.btn-primary,
.btn-outline {
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: orange;
  color: #ffffff;
  border: 1px solid orange; /* Removed the red border override */
margin-inline: auto;
}

.btn-primary:hover {
  background: #FF8C00;
  border-color: #FF8C00;
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: #000;
  border: 1px solid #cbd5e1;
}



.fineprint {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
width: 100%;
}

/* Wider layout on desktop */
@media (min-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .field.full,
  .form-actions.full,
  .fineprint.full {
    grid-column: 1 / -1;
  }

  .form-actions {
    grid-template-columns: 220px 220px;
  }
}


/* ========= Collaboration Submission ========= */

.collab-form {
  width: 100%;
}

/* Reuse form styles if present; these extend them */
.field select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: #0f172a;
}

.field select:focus {
  border-color: #000;
}

/* Optional: make collaboration forms feel a bit different */
.collab-form .page-head h1 {
  max-width: 800px;
}

.collab-form .page-sub {
  max-width: 760px;
}

.page-sub {
  color: white;
}

/* Slight spacing refinement */
.collab-form .form-grid {
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* --- Collaborations Grid Layout --- */

.collab-list-main {
  display: grid;
  /* Creates 3 columns of equal width */
  grid-template-columns: repeat(3, 1fr); 
  /* Space between the cards */
  gap: 24px; 
  margin-top: 20px;
}

/* Existing Desktop Style (3 Columns) */
.collab-list-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-top: 20px;
}

/* New Mobile Style (1 Column) */
@media (max-width: 768px) {
  .collab-list-main {
    /* Changes the grid to 1 column taking up the full width */
    grid-template-columns: 1fr; 
  }
}

.collab-card {
  display: flex;
  flex-direction: column;
  height: 100%; 
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
  text-decoration: none; /* Removes underline from links */
  color: inherit;        /* Inherits text color */
  transition: transform 0.2s, box-shadow 0.2s;
}

.collab-card:hover {
  border-color: #ddd;
}

.collab-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.collab-meta {
  color: #666; 
  font-size: 0.9em; 
  margin: 5px 0;
}

/* --- Responsive Design --- */

/* On Tablets (max-width 900px): 2 Columns */
@media (max-width: 900px) {
  .collab-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* On Mobile (max-width 600px): 1 Column */
@media (max-width: 600px) {
  .collab-list {
    grid-template-columns: 1fr;
  }
}

/* ========= Project Display (Single Project) ========= */

.projects-container {  margin: 0 auto; padding: 28px 16px; width: 90%; }

.project {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.project-hero {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  height: clamp(220px, 36vw, 420px);
}

.project-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-head {
  display: grid;
  gap: 10px;
color: white;
padding: 10px;
}

.project-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.6px;
color: white;
}

.project-summary {
  margin: 0;
color: white;
  font-size: 14px;
  line-height: 1.6;
  max-width: 75ch;
}

/* Force 2 columns for the badges */
.project-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
  gap: 12px;                             /* Space between the badges */
  margin-top: 15px;
}

/* --- PROJECT LIST STYLES --- */

/* Grid layout for cards */
.project-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Individual Card Styling */
.project-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.actions.flex-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.project-card-header {
    margin-bottom: 16px;
}

.project-card-title {
    margin: 0;
    font-size: 1.25rem;
    color: #000;
    font-weight: 700;
}

.project-card-owner {
    font-size: 0.875rem;
    color: #64748b;
    display: block;
    margin-top: 4px;
}

.project-card-body {
    flex-grow: 1;
}

.project-card-goal {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 20px 0;
}

.project-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-date {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
    .project-list-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure badges look consistent */
.badge {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}



.badge-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.badge-value {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.info-row {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  margin-top: 10px;
}

.info-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.info-value {
  font-size: 13px;
  color: #0f172a;
  font-weight: 600;
}

.inline-link {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}

.inline-link:hover {
  opacity: 0.9;
}

@media (min-width: 720px) {
  .project-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .project-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}


/* ========= Collaborations Listing ========= */

.collab-actions {
  margin-top: 12px;
}

/* list wrapper */
.collab-list {
  display: grid;
  /* Creates 4 columns, each taking up 24% of the container width */
  grid-template-columns: repeat(4, 24%); 

  justify-content: space-between; 

  gap: 14px; 
  
  margin-top: 14px;

}

/* 90% rectangle card */
.collab-card {
  width: 90%;
  display: flex;
  gap: 14px;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
}

.collab-card:hover {
  border-color: #cbd5e1;
}



/* left image */
.collab-img {
  flex: 0 0 42%;
  max-width: 42%;
  background: #f1f5f9;
}

.collab-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* right info */
.collab-info {
  flex: 1;
  padding: 14px 14px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.collab-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.collab-meta {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.collab-needed {
  margin: 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.55;

  /* keeps cards tidy */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collab-needed strong {
  color: #0f172a;
}

/* Mobile: stack image on top */
@media (max-width: 640px) {
  .collab-card {
    width: 100%;
    flex-direction: column;
  }

  .collab-img {
    flex: none;
    max-width: 100%;
    height: 180px;
  }

  .collab-info {
    padding: 14px;
  }
}

/* Desktop: slightly wider cards */
@media (min-width: 900px) {
  .collab-card {
    width: min(900px, 90%);
  }
}

/* ========= Open Calls Listing ========= */

/* Container: This creates the 3 columns */
.open-list {
  display: grid;
  /* CHANGE: Use 1fr instead of percentages. This creates 3 equal columns automatically. */
  grid-template-columns: repeat(3, 1fr);

  gap: 8px; 
 
  margin-top: 14px;
  width: 100%;
}

.tag-container {
  margin-top: 8px;
  margin-bottom: 8px;
}

.art-pill-small {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #f0f0f0;
  color: #555;
  border-radius: 12px;
  padding: 2px 8px;
  margin-right: 4px;
  margin-bottom: 4px;
  border: 1px solid #e0e0e0;
}

    .art-tags-section {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    .art-pill {
        display: inline-block;
        background-color: #f4f4f4;
        color: #333;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-right: 6px;
        margin-bottom: 6px;
        border: 1px solid #ddd;
    }
    .tags-label {
        display: block;
        font-weight: bold;
        font-size: 0.9rem;
        margin-bottom: 8px;
        color: #555;
    }

/* 1. The Card: Switch to Vertical Stack */
.open-card {
  width: 100%; /* Let the grid decide the width, don't force 30% here */
  display: flex;
  flex-direction: column; /* CHANGED: Stacks image on top, info below */
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
}

.open-card:hover {
  border-color: #cbd5e1;
}

/* 2. The Image: Full width, fixed height */
.open-img {
  width: 100%;      /* Full width of the card */
  height: 200px;    /* CHANGED: Fixed height ensures all cards look uniform */
  flex: none;       /* Reset flex settings */
  max-width: none;  /* Reset max-width */
  background: #f1f5f9;
}

.open-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 3. The Info: Fix padding */
.open-info {
  flex: 1;
  /* CHANGED: Padding all around since image is now on top */
  padding: 16px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align text to top */
}

.open-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.open-meta {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.open-deadline {
  margin-top: auto; /* Pushes deadline to bottom of card if content varies */
  margin-bottom: 4px;
  font-size: 14px;
  color: #334155;
  font-weight: 600;
}

.open-fee {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* 4. Responsiveness: Mobile support */
/* On tablets, show 2 columns */
@media (max-width: 900px) {
  .open-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* On phones, show 1 column */
@media (max-width: 600px) {
  .open-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile: stack image on top */
@media (max-width: 640px) {
  .open-card {
    width: 100%;
    flex-direction: column;
  }

  .open-img {
    flex: none;
    max-width: 100%;
    height: 180px;
  }

  .open-info {
    padding: 14px;
  }
}



/* ========= Open Call – Single Page ========= */

.open-call {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.open-call-hero {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
  /* This clamp ensures a good height on all devices */
  height: clamp(220px, 36vw, 420px); 
  margin-top: 15px;
  border-radius: 18px;
}

.open-call-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.open-call-head {
  display: grid;
  gap: 10px;
padding: 10px;
}

.open-call-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: white;
}

.open-call-summary {
  margin: 0;
  font-size: 14px;
  color: white;
  line-height: 1.6;
  max-width: 75ch;
}

.open-call-badges {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.open-call-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.apply-note {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .open-call-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .open-call-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

/* ========= Open Call Submit ========= */

.open-submit-form {
  width: 100%;
}

/* Ensure selects match inputs (if not already) */
.open-submit-form select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
}

.open-submit-form select:focus {
  border-color: #000;
}



.profile-container {  margin: 0 auto; padding: 28px 16px; width: 90%; }

.profile-link {
  font-weight: 500;
  color: #0f172a;
  opacity: 0.85;
  text-decoration: none;
}

.profile-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ========= User Profile ========= */

.profile {
  display: grid;
  gap: 20px;
  padding-bottom: 20px;
}

.profile-header {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: center;
}

.profile-intro-text {
width: 80%;
  text-align: left;
align: 0 auto;
}

/* Profile image */
.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f1f5f9;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.matched-calls-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 1rem;
    }

 .matched-img {
        height: 140px;
        width: 100%;
        background-color: #f4f4f4;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 2rem;
    }
    .matched-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
  
    .matched-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 8px;
    }
    .matched-tag {
        font-size: 0.7rem;
        background-color: #f0f0f0;
        color: #555;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
    }

    .matched-info {
        padding: 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .matched-title {
        margin: 0 0 8px 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
    }
    .matched-meta {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 10px;
    }
    .matched-deadline {
        margin-top: auto; /* Pushes deadline to bottom */
        font-size: 0.85rem;
        color: #e55039;
        font-weight: 600;
        padding-top: 10px;
        border-top: 1px solid #f9f9f9;
    }


/* Info */
.profile-info {
  display: grid;
  gap: 6px;
width: 100%;
}

.profile-page-links {
  gap: 6px;
width: 50%;
    
}

.profile-name {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

/* Remove underlines from profile cards and links */
.matched-card, 
.link-card,  {
    text-decoration: none !important;
    color: inherit; /* Keeps the text color black/grey instead of default blue link color */
}

/* Optional: Add a subtle hover effect instead of underline */
.matched-card:hover {
    border-color: #000; /* Dark blue border on hover */
}

.profile-username {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.profile-bio {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  max-width: 70ch;
}

.profile-meta {
  margin-top: 6px;
  font-size: 13px;
  color: #475569;
}

    .matched-deadline {
        margin-top: auto;
        font-size: 0.85rem;
        color: #e55039; /* Red for Open Calls */
        font-weight: 600;
        padding-top: 10px;
        border-top: 1px solid #f9f9f9;
    }
    .matched-date-event {
        margin-top: auto;
        font-size: 0.85rem;
        color: #4a69bd; /* Blue for Events */
        font-weight: 600;
        padding-top: 10px;
        border-top: 1px solid #f9f9f9;
    }
    .matched-collab-needed {
        margin-top: auto;
        font-size: 0.85rem;
        color: #f6b93b; /* Orange/Yellow for Collaborations */
        font-weight: 600;
        padding-top: 10px;
        border-top: 1px solid #f9f9f9;
    }

/* Links section */

.profile-links {
  padding: 10px;
  background: #f7f7f7;

}

.profile-links-top {
  padding: 10px;
}

.profile-links h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}

.links-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: transform 120ms ease, box-f 120ms ease;
}

.link-card:hover {
background: #000;
color: white; 
}

.link-card:active {
  transform: translateY(0);
}

/* Desktop layout */
@media (min-width: 720px) {
  .profile-header {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 700px;
  }
}


/* ========= Create Profile ========= */

.profile-form { width: 100%; }

.social-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.social-grid input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: #0f172a;
}

.social-grid input:focus {
  border-color: #000;
}

.fav-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fav-count {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
}

/* Pills */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}

.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill:hover {
  border-color: #000;
}

.pill.is-selected {
  background: #000;
  border-color: #000;
  color: #ffffff;
}

.pill.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 900px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* ========= Jobs Page ========= */

.art-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 28px 16px;
}

.jobs-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

/* Job card */
.job-card {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}

.job-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.job-meta {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.job-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

.job-actions {
  display: flex;
  align-items: center;
}

/* Desktop layout */
@media (min-width: 900px) {
  .job-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .job-actions {
    justify-content: flex-end;
  }
}

/* ========= Job Details ========= */

.job-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
}

.job-detail {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.job-head {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.job-h1 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: white;
}

.job-company {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.job-badges {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.job-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: white;
  max-width: 75ch;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-fine {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.job-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

/* Uses your existing .panel, .bullet, .info-row, .actions button styles if present */

@media (min-width: 720px) {
  .job-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .job-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

/* ========= Submit Job Page ========= */

.submitjobcontainer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
}

.submit-job-form {
  width: 100%;
}

/* Make selects match the input style (safe even if already present) */
.submit-job-form select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: #0f172a;
}

.submit-job-form select:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.12);
}

.about-panel {
width: 80%;
}

.about-panel h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.about-panel h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.about-panel p {
  margin: 0;
  line-height: 1.65;
  font-size: 16px;
}



.colored-page-head {
  width:  100%;
padding: 10px;
background-color: #000;
margin-bottom: 15px;
}

.colored-page-head h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
color: #fff;
}


.colored-page-head p {
color: #fff;
}







/* ========= Contact Page ========= */


.contact-container {  margin: 0 auto; width: 90%;  }

.blank-page-head {
  width:  100%;
}

.blank-page-head h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
color: #111;
}


.blank-page-head p {
color: #111;
}

.contact-notice {
  border-radius: 16px;
  padding: 14px 16px;
  background: #FFA500;
  margin: 14px 0;
  color: white;
}

.contact-page-sub {
  margin: 0;
  color: #111;
  font-size: 15px;
padding: 10px;
}


.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-top: 14px;
}

/* Reuse your existing .panel if you have it; safe defaults */
.contact-form h2,
.contact-info h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0f172a;
}

.contact-form .form-actions {
  margin-top: 10px;
width: 100%;
}

.form-footer {
  margin-top: 10px;
width: 100%;
text-align: center;
}

.form-footer-login {
  margin-top: 10px;
width: 100%;
text-align: center;
grid-column: 1 / -1;
}

/* Desktop split */
@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}


/* ========= Project Planner ========= */

.planner-container {
width: 96%;
  margin: 0 auto;
  padding: 28px 16px;
}

.step-header {
margin-bottom: 10px;
border-bottom: 1px solid #D9D9D9;
}

.planner-form { width: 100%; }

.planner-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

/* Steps section */
.steps-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
}

.steps-title {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0f172a;
}

.steps-sub {
  margin: 0 0 12px;
  font-size: 13px;
  color: #475569;
}

.step-field textarea {
  min-height: 90px;
}

/* Desktop layout */
@media (min-width: 900px) {
  .planner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .planner-grid .full {
    grid-column: 1 / -1;
  }
}


/* ========= Resources Page ========= */

.resources-container {
  width: 90%;
  margin: 0 auto;
} 

.resource-intro p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

/* Resource links */
.resource-links {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.resource-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-decoration: none;
  color: #0f172a;
  transition: transform 120ms ease, box-shadow 120ms ease;
}



.resource-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.resource-card p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
}

.resource-cta {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

/* Corrected selector and property */
.resource-cta:hover {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .resource-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========= Header Sign Up Pill ========= */

.signup-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: orange;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.signup-pill:hover {
  background: #FF8C00;
}

.signup-pill:active {
  transform: translateY(0);
}

/* Mobile spacing safety */
@media (max-width: 640px) {
  .signup-pill {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.signup-pill {
  line-height: 1;   /* keeps text centered */
}



/* ========= Background Video Tile ========= */

.video-item {
  position: relative;
  overflow: hidden;
}

/* Make link fill the card */
.video-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* Video fills container */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* same behavior as background-image */
}

/* Optional: dark overlay for readability */
.video-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}


.sign-up-container {  margin: 0 auto; padding: 28px 16px; width: 60%; }

@media (max-width: 768px) {
  .sign-up-container {
    width: 90%;
  }
}

.log-in-container {  margin: 0 auto; padding: 28px 16px; width: 50%; }

@media (max-width: 768px) {
  .log-in-container {
    width: 90%;
  }
}



















/* --- Pricing / Subscription Page --- */


.prices-page-head {
  margin: 10px auto 18px;
  width:  100%;
text-align: center;
}

.prices-page-sub {
  color: #000;
}

.prices-page-head h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
color: #000;
padding: 10px;
  width:  100%;
}


.prices-page-head p {
color: #fff;
  width:  100%;
}


.prices-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px 20px;
color: #000;
}

.pricing-grid {
  display: flex;
  justify-content: center; /* Centers the card if there is only one */
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #F5F5E8;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 400px; /* Keeps the card from getting too wide */
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-1px);
  border-color: #ddd;
}

.plan-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  margin: 10px 0;
}

.plan-period {
  font-size: 1rem;
  color: #000;
  font-weight: normal;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  color: #000;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
   color: #000;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Checkmark icon before list items */
.plan-features li::before {
  content: "✓"; 
  color: #ff6600; /* Orange to match your theme */
  font-weight: bold;
  margin-right: 10px;
}


/* JOIN NOW BUTTON */
.btn-subscribe {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  border-radius: 999px;
background: #000;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-subscribe:hover {
  background: orange;
  color: white;
  transform: translateY(-2px);
}


    .faq-container {
        padding: 40px 20px;
    }
    
    .faq-section-title {
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: #333;
        border-bottom: 2px solid #e55039; /* Orange accent */
        padding-bottom: 10px;
        display: inline-block;
    }

    .accordion-item {
        background-color: #fff;
        border: 1px solid #eee;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
    }

    .accordion-header {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 20px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f9f9f9;
    }

    /* Icon rotation */
    .icon-plus {
        font-size: 1.5rem;
        color: #e55039;
        transition: transform 0.3s ease;
    }
    
    .accordion-header.active .icon-plus {
        transform: rotate(45deg); /* Turns plus to X */
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: #fafafa;
    }

    .accordion-body {
        padding: 20px;
        color: #555;
        line-height: 1.6;
        border-top: 1px solid #eee;
    }



    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
    }

@media (max-width: 768px) {
  .filter-bar {
    display: none;
  }
}

    .filter-pill {
      display: inline-block;
      padding: 0.4rem 0.8rem;
      background: #f4f4f4;
      border-radius: 20px;
      text-decoration: none;
      color: #333;
      font-size: 0.85rem;
      transition: background 0.2s, color 0.2s;
    }
    .filter-pill:hover {
      background: #e0e0e0;
    }
    .filter-pill.active {
      background: #000; /* Use your primary brand color here */
      color: #fff;
    }
    .filter-label {
      width: 100%;
      font-size: 0.9rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #666;
    }


    .pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .page-link {
        padding: 8px 12px;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #333;
        border-radius: 4px;
        transition: background 0.2s;
    }
    .page-link:hover {
        background-color: #f0f0f0;
    }
    .page-link.active {
        background-color: #ff6b6b; /* Adjust to your orange/theme color */
        color: white;
        border-color: #ff6b6b;
    }
    .page-link.disabled {
        color: #aaa;
        pointer-events: none;
        border-color: #eee;
    }

    .art-tags-section {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    .art-pill {
        display: inline-block;
        background-color: #f4f4f4;
        color: #333;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-right: 6px;
        margin-bottom: 6px;
        border: 1px solid #ddd;
    }
    

/* Layout */
.main-content {
  padding: 60px 20px;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-header .subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
}


.blog-container {
width: 90%;
margin: 0 auto;
}

/* Blog Post */
.blog-post {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
width: 100%;
}

.blog-post p {
  margin-bottom: 10px;
width: 95%;
}

.blog-post h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.blog-post h3 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.blog-post h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.blog-post ul,
.blog-post ol {
  margin: 0 0 24px 20px;
}

.blog-post li {
  margin-bottom: 8px;
}

/* Callout Box */
.callout {
  margin: 40px 0;
  padding: 20px;
  background: #f5f5f5;
  border-left: 4px solid #111;
  font-size: 0.95rem;
}

/* Closing paragraph */
.blog-post .closing {
  margin-top: 40px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .blog-post h2 {
    font-size: 1.5rem;
  }
}



    .survey-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 2rem;
      background: #fff; /* Assuming white cards based on context */
      border: 1px solid #eee; /* Subtle border */
      border-radius: 8px;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .form-group select,
    .form-group input[type="text"], 
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }

    .submit-btn {
      background-color: #000; /* Adjust based on shrmpstyle primary color */
      color: #fff;
      padding: 1rem 2rem;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      border-radius: 4px;
    }

    .submit-btn:hover {
      opacity: 0.8;
    }

    .thank-you-box {
      text-align: center;
      padding: 3rem;
      background: #f9f9f9;
      border-radius: 8px;
    }
    
    .thank-you-box a {
        color: blue; /* Or site theme color */
        text-decoration: underline;
        font-weight: bold;
    }




.terms-container {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
.terms-container h1 {
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }
.terms-container h2 {
            margin-top: 30px;
            color: #2c3e50;
        }
        .terms-container h3 {
            margin-top: 20px;
            color: #444;
        }
        .terms-container ul {
            margin-bottom: 15px;
        }
        .terms-container li {
            margin-bottom: 8px;
        }
        .disclaimer-box {
            background-color: #f9f9f9;
            border-left: 5px solid #ffcc00;
            padding: 15px;
            margin-bottom: 30px;
            font-size: 0.9em;
        }





/* --- 1. Main Footer Background --- */
footer {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 30px 0; /* Vertical breathing room */
}

/* --- 2. The 90% Container --- */
/* This is the key to your width request */
.footer-base {
  width: 90%;
  max-width: 1200px; /* Prevents it from looking stretched on huge screens */
  margin: 0 auto;    /* Centers the 90% box in the middle of the screen */
  
  /* Flexbox Layout Settings */
  display: flex;
  flex-direction: column; /* Default: Stack vertically (Mobile) */
  align-items: center;    /* Center text (Mobile) */
  gap: 20px;              /* Space between the copyright and the links */
}

/* --- 3. Inner Sections --- */
.footer-left,
.footer-links {
  width: 100%;            /* Take up full width on mobile */
  text-align: center;     /* Center text on mobile */
}

/* Specific styling for the navigation links group */
.footer-links {
  display: flex;
  flex-wrap: wrap;        /* Allows wrapping on tiny screens */
  justify-content: center;
  gap: 20px;              /* Space between "About", "Contact", etc. */
}

/* --- 4. Link Styling --- */
footer a {
  text-decoration: none;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-left span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #000;
}

/* --- 5. Desktop View (Side-by-Side) --- */
@media (min-width: 768px) {
  .footer-base {
    flex-direction: row;            /* Switch to horizontal layout */
    justify-content: space-between; /* Push content to left & right edges */
    align-items: center;            /* Vertically center the items */
  }

  .footer-left,
  .footer-links {
    width: auto;  /* Let the content define the width */
  }

  .footer-left {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end; /* Align nav links to the right */
  }
}
























































































/* =========================================
   GLOBAL HEADER SETTINGS (Poppins Font)
   ========================================= */
header {
  background-color: #000; /* Dark Blue */
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1000;
  font-family: 'Poppins', sans-serif; /* Enforce Poppins */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* =========================================
   DESKTOP NAVIGATION (Visible > 768px)
   ========================================= */
.desktop-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
font-weight: bold;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
font-weight: bold;
}

/* Standard Links */
.desktop-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.desktop-menu a:hover {
  opacity: 1;
}

/* Desktop Dropdown Container */
.desktop-dropdown {
  position: relative;
  display: inline-block;
  height: 100%; /* Helps hit area */
}

/* Dropdown Button (Opportunities ▼) */
.desktop-dropbtn {
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0; /* Vertical padding expands hover area */
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-dropbtn:hover {
  opacity: 1;
}

/* The Dropdown Box */
.desktop-dropdown-content {
  display: none;
  position: absolute;
  font-weight: bold;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 1001;
  margin-top: -5px; /* Slight overlap to prevent gap */
}

/* Show Dropdown on Hover */
.desktop-dropdown:hover .desktop-dropdown-content {
  display: block;
}

/* Links inside Dropdown */
.desktop-dropdown-content a {
  color: #333333; /* Dark text */
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #000 /* Blue on hover */
}

/* Auth Section (Login / Sign Up) */
.desktop-auth {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sign Up Pill Button */
a.signup-pill {
  background-color: #FFAF49; /* Orange */
  color: #ffffff !important;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

a.signup-pill:hover {
  background-color: #FFAF49;
}

/* =========================================
   MOBILE NAVIGATION (Visible <= 768px)
   ========================================= */
.mobile-nav-header {
  display: none; /* Hidden on Desktop */
}

/* Hamburger Button */
#mobile-menu-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* Full Screen Overlay */
#mobile-menu-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 70px; /* Matches header height */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #ffffff;
  z-index: 999;
  overflow-y: auto;
  border-top: 1px solid #eee;
}

#mobile-menu-overlay.open {
  display: block;
}

/* Mobile Links Layout */
.mobile-links {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.mobile-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333; /* Dark text */
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 1px solid #f4f4f4;
  display: block;
}

/* Mobile Divider Line */
.mobile-divider {
  height: 8px;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* Mobile Auth Buttons */
.mobile-auth {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.mobile-auth a {
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.mobile-auth a.signup-pill {
  background-color: #FF8C00;
  color: #ffffff !important;
  border: none;
}

/* =========================================
   MEDIA QUERIES (The Switch)
   ========================================= */
@media (max-width: 768px) {
  /* Hide all Desktop elements */
  .desktop-nav-container {
    display: none !important;
  }

  /* Show Mobile Header elements */
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}


/* =========================================
   NO-JS MENU LOGIC (Checkbox Hack)
   ========================================= */

/* 1. Hide the actual checkbox input */
.mobile-toggle-checkbox {
  display: none;
}

/* 2. Target the overlay when the checkbox is checked */
/* The ~ symbol selects a sibling element (mobile-menu-overlay) */
.mobile-toggle-checkbox:checked ~ #mobile-menu-overlay {
  display: block !important;
}

/* Optional: Change the icon to an 'X' when open */
.mobile-toggle-checkbox:checked ~ .header-inner .mobile-nav-header #mobile-menu-btn {
  content: "✕"; /* Note: To do this purely with CSS, you'd usually use ::before pseudo-elements, but simply toggling the menu works fine without changing the icon too. */
}













    .profile-template-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    .profile-template-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    /* Flexbox layout for the rows */
    .profile-template-row {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    /* Reverses the order for the second image */
    .profile-template-row-reverse {
        flex-direction: row-reverse;
    }

.profile-template-intro-text {
width: 80%;
  text-align: left;
margin: 0 auto;
}

.profile-template-intro-text-header {
width: 80%;
  text-align: center;
margin: 0 auto;
font-weight: bold;
}


    .profile-template-image-box {
        flex: 1;
        width: 100%;
    }

    .profile-template-image-box img {
        width: 100%;
        height: auto;
        display: block;
    }

    .profile-template-text-box {
        flex: 1;
    }

    /* Responsive: Stack columns on mobile */
    @media (max-width: 768px) {
        .profile-template-row, .profile-template-row-reverse {
            flex-direction: column;
        }
    }




.about-us-panel {
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
margin-top: 40px;
 text-align: center;
}

.about-us-panel h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #334155;
}

.about-us-panel h3 {
  margin: 14px 0 8px;
  font-size: 15px;
  color: #334155;
}

.about-us-panel p {
  margin: 0;
  color: #334155;
  line-height: 1.65;
  font-size: 14px;
}



