/*
Theme Name:         Lifted Logic
Theme URI:          https://liftedlogic.com/
Description:
Version:            3.0.0
Author:             Lifted Logic
Author URI:         https://liftedlogic.com/

License:
License URI:
*/

/* ============================
      COMMUNITY INVOLVEMENT
=============================== */

.ci-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ci-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* HERO */
.ci-hero {
    background: #01357B;
    padding: 100px 20px;
    text-align: center;
}

.ci-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
}

/* IMPACT SECTION */


.ci-impact img{
    border-radius: 10px;
}

.ci-impact {
    background: #fff;
    padding: 80px 20px;
    justify-content: center;
}

.ci-impact h2 {
    color: #01357B;
    background: #fff;
    font-size:36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.ci-impact p {
    color: #fff;
    background: #01357B;
    padding: 25px;
    border-radius: 6px;
}

/* =========================
       COMMUNITY TABS
========================= */


.ci-tabs {
    padding: 80px 0;
    
}

.ci-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ci-tab {
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    background: #e6e6e6;
    color: #01357B;
    font-size: 36px;
    font-weight: 400;
    border-radius: 4px;
}

.ci-tab:hover {
    background: #01357B;
    color: #fff;
}

.ci-tab.active {
    background: #01357B;
    color: #fff;
}

.ci-tab-content {
    background: #fff;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.ci-tab-panel{
    display: none;
}

.logo-panel{
    display: none;
}

.ci-tab-panel.active{
    display: block;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.logo-panel.active{
    display: block;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.ci-tab-panel ul {
    columns: 2;
    list-style: none;
    padding: 0;
    color:#000;
}

.ci-tab-panel li {
    padding: 6px 0;
    font-size: 18px;
    font-weight:400;
    font-famiy: open-sans
    color: #01357B;
}

/* ICON */
.ci-tab-panel li::before {
    content: ;
    position: absolute;
    left: 0;
    top: 2px;
    color: #01357B;
    font-size: 14px;
}

.ci-icon-list i {
    color: #01357B;
    margin-right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .ci-tab-panel ul {
        columns: 1;
    }
}

/* ============================= */
				LOGOS
/* ============================= */

.community-logos {
  padding: 60px 20px;
  background-color: #fff;
}

.community-logos .container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom:20px;
}

/* Tabs */
.tabs-wrapper {
  text-align: center;
  margin-bottom: 30px;
}


.tab-btn {
  	padding: 12px 22px;
    border: none;
    cursor: pointer;
    background: #e6e6e6;
    color: #01357B;
    font-size: 36px;
    font-weight: 400;
    border-radius: 4px;
}

.tab-btn {
    gap: 20px;
    
}

.tab-btn:hover {
    background: #01357B;
    color: #fff;
}

.tab-btn.active {
  background: #01357B;
  color: #fff;
  border-color: #01357B;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.logos-grid img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-grid img:hover {
  transform: scale(1.05);
}


/* ===========================
		     Gallery
   =========================== */
/* Full-width section */
.full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Gallery layout */
.hover-gallery {
  padding: 0; /* edge-to-edge */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2; /* no gaps like your screenshot */
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(1, 53, 123, 0.85); /* #01357B */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

/* Hover effects */
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover .overlay h3 {
  transform: translateY(0);
}


/* =======================
		Sponsership Form
   ======================== */

/* Section background */
.sponsorship-form {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
    display:flex;
    justify-content: center;
}

/* Card container */
.sponsorship-card {
    width: 100%;
    max-width: 800px;
    background: #01357B;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(1, 53, 123, 0.12);
}

/* Heading */
.sponsorship-heading {
    text-align: center;
    margin-bottom: 30px;
}

.sponsorship-heading h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sponsorship-heading p {
    color: #fff;
    font-size: 16px;
}


/* ============================= */
/* FORM STRUCTURE */
/* ============================= */

.sponsorship-form-structure {
  max-width: 900px;
  margin: 0 auto;
  font-family: inherit;
}

.sponsorship-form-structure .field {
  margin-bottom: 24px;
}

/* Labels */
.sponsorship-form-structure label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 6px;
}

.sponsorship-form-structure .req {
  color: red;
}

/* ============================= */
/* INPUTS – USING YOUR SCHEME */
/* ============================= */

.sponsorship-form-structure input,
.sponsorship-form-structure select,
.sponsorship-form-structure textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;                 /* from your CSS */
  border: 1px solid #dce4f0;            /* from your CSS */
  font-size: 15px;                      /* from your CSS */
  background: #f9fbff;                  /* from your CSS */
  transition: all 0.3s ease;
}

/* Focus effect */
.sponsorship-form-structure input:focus,
.sponsorship-form-structure select:focus,
.sponsorship-form-structure textarea:focus {
  outline: none;
  border-color: #00b6f0;                /* from your CSS */
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 182, 240, 0.15);
}

/* Textarea */
.sponsorship-form-structure textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================= */
/* GRID (UNCHANGED STRUCTURE) */
/* ============================= */

.cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================= */
/* AMOUNT FIELD ($ INSIDE) */
/* ============================= */

.amount-wrap {
  position: relative;
}

.amount-wrap .currency {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #555;
}

.amount-wrap input {
  padding-left: 30px;
}

/* ============================= */
/* FILE UPLOAD */
/* ============================= */

.sponsorship-form-structure input[type="file"] {
  padding: 10px;
  background: #f9fbff;
}

/* ============================= */
/* SUBMIT BUTTON – FROM YOUR CSS */
/* ============================= */

.sponsorship-form-structure input[type="submit"] {
  background: #01357B;
}

.wpcf7-submit {
  display: block;
  margin: 30px auto 0;
  background: #01357B;
  color: #fff;
  border: none;
  padding: 15px 55px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(1, 53, 123, 0.45);
  transition: all 0.35s ease;
}

.sponsorship-form-structure input[type="submit"]:hover {
  background: #F5811E;
}

.wpcf7-submit:hover {
  background: #F5811E;
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(1, 53, 123, 0.6);
}

/* ============================= */
/* CF7 VALIDATION */
/* ============================= */

.wpcf7-not-valid-tip {
  color: #e63946;
  font-size: 13px;
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  .cf7-grid {
    grid-template-columns: 1fr;
  }
}