:root {
  --pink: #ef4f93;
  --hot: #e9367e;
  --soft: #fff1f7;
  --gold: #c98a2b;
  --dark: #242128;
  --muted: #6d6570;
  --white: #fff;
  --shadow: 0 22px 55px rgba(239, 79, 147, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(1150px, 92%);
  margin: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 3%;
  background: #fff;
  border-top: 2px solid var(--pink);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 9999;
  overflow: visible;
}
.logo {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 42px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo .script {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  color: var(--pink);
  line-height: 0.8;
}
.logo strong {
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  letter-spacing: 0.6px;
}
.header-shoe {
  width: 120px;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: 8px;
  margin-top: 18px;
  position: static;
  transform: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10000;
}
.nav a {
  position: relative;
}
.nav a:not(.donate-btn)::after {
  content: "";
  height: 2px;
  width: 0;
  background: var(--pink);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}
.nav a:hover::after,
.nav .active::after {
  width: 100%;
}
.donate-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--pink), var(--hot));
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.nav-toggle {
  display: none;
}
.hamburger {
  display: none;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    #fff 0%,
    #ffe3ef 42%,
    #fff6fa 100%
  );
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.65)
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 90px,
      rgba(255, 255, 255, 0.55) 91px 93px
    );
}
.hero:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -90px;
  height: 230px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(760px, 90%);
  padding-top: 80px;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--pink);
  font-weight: 800;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  color: #2c1d28;
  margin-bottom: 22px;
}
.hero p {
  font-size: 18px;
  color: #554a55;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.secondary-btn {
  background: #fff;
  color: var(--pink);
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid #ffd0e2;
}
.hero-visual {
  position: absolute;
  z-index: 1;
  bottom: 55px;
  text-align: center;
  filter: drop-shadow(0 20px 20px rgba(201, 138, 43, 0.18));
}
.ribbon {
  font-size: 260px;
  line-height: 0.7;
}
.shoes {
  font-size: 120px;
  margin-top: -40px;
}
.floating-words {
  position: absolute;
  z-index: 1;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: "Great Vibes", cursive;
  font-size: 52px;
  color: var(--pink);
  opacity: 0.85;
}
.floating-words span:nth-child(even) {
  color: var(--gold);
  margin-left: 70px;
}
.floating-words.left {
  left: 6%;
}
.floating-words.right {
  right: 6%;
}

.section {
  padding: 95px 0;
  overflow-x: hidden;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  margin-bottom: 20px;
}
p {
  color: var(--muted);
}
.lead {
  font-size: 20px;
  max-width: 920px;
  margin: auto;
}
.small {
  font-size: 16px;
}
.center {
  text-align: center;
}
.about-card,
.program-card,
.event-card,
.contact-form {
  background: #fff;
  border: 1px solid #ffe0ec;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-card {
  background: linear-gradient(135deg, #fff, #fff0f6);
}
.about-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.about-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.mission-section {
  background: linear-gradient(135deg, #fff1f7, #fff);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.mission-content {
  text-align: left;
}
.mission-content .lead {
  margin: 0;
}
.mission-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission-image img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.12));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 35px;
}
.section-head p {
  max-width: 480px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.program-card span {
  font-size: 42px;
}
.program-card h3 {
  margin: 12px 0 8px;
  color: #3a2433;
}

.events-section {
  background: #fff8fb;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.event-card {
  position: relative;
  padding: 120px 28px 32px;
  min-height: 360px;
}
.event-card.featured {
  background: linear-gradient(135deg, #fff, #ffe6f1);
  transform: translateY(-10px);
}
.date-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background: var(--pink);
  color: #fff;
  border-radius: 18px;
  width: 70px;
  height: 70px;
  text-align: center;
  display: grid;
  place-items: center;
  line-height: 1;
}
.date-badge span {
  font-size: 26px;
  font-weight: 800;
}
.event-card h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.meta {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.event-card a,
.small-link {
  color: var(--pink);
  font-weight: 800;
  display: inline-block;
  margin-top: 15px;
}

.gallery-section {
  background: linear-gradient(180deg, #fff, #fff7fb);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px;
}
.gallery-item {
  min-height: 185px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(
      135deg,
      rgba(239, 79, 147, 0.85),
      rgba(201, 138, 43, 0.75)
    ),
    url("https://images.unsplash.com/photo-1576765607924-3f7b8410a787?auto=format&fit=crop&w=700&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.gallery-item:nth-child(2n) {
  background-image: linear-gradient(
      135deg,
      rgba(233, 54, 126, 0.75),
      rgba(255, 255, 255, 0.15)
    ),
    url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=700&q=80");
}
.gallery-item:nth-child(3n) {
  background-image: linear-gradient(
      135deg,
      rgba(201, 138, 43, 0.78),
      rgba(239, 79, 147, 0.62)
    ),
    url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=700&q=80");
}
.gallery-carousel {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 28px;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-slide {
  min-width: calc(33.333% - 17px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
  background: #fff;
}
.gallery-slide:hover {
  transform: translateY(-7px);
}
.gallery-slide img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(239, 79, 147, 0.28);
  transition: 0.3s;
}
.gallery-arrow:hover {
  background: var(--hot);
}
.gallery-prev {
  left: 12px;
}
.gallery-next {
  right: 12px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.board-grid div {
  background: #fff7fb;
  border: 1px solid #ffd7e7;
  border-radius: 22px;
  padding: 22px;
}
.board-grid strong,
.board-grid span {
  display: block;
}
.board-grid span {
  color: var(--pink);
  font-weight: 700;
}

.donate-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink), #f796bd);
  color: #fff;
  overflow-x: hidden;
}
.donate-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.donate-box p,
.donate-box .section-label {
  color: #fff;
}
.donate-box .primary-btn {
  background: #fff;
  color: var(--pink) !important;
}

.contact-list p {
  margin-bottom: 16px;
}
.contact-list a {
  color: var(--pink);
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 15px;
}
.contact-form h1,
.contact-form h4 {
  text-align: center;
}
.contact-form h1 {
  color: var(--dark);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
}
.contact-form h4 {
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ffd7e7;
  border-radius: 15px;
  padding: 14px 16px;
  font: inherit;
}
.contact-form button {
  width: 100%;
  border: 0;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 28px;
  background: #2a1c25;
}
.footer p {
  color: #fff;
}
.instagram-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}
.instagram-float:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Tablet and mobile navigation fix */
@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    height: auto;
    padding: 14px 5%;
    flex-wrap: nowrap;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10001;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--pink);
    border-radius: 99px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-top: 1px solid #ffe0ec;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    z-index: 10000;
  }
  .nav-toggle:checked + .hamburger + .nav {
    display: flex;
  }
  .nav a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .nav .donate-btn {
    width: fit-content;
    padding: 12px 28px;
  }
  .header-shoe {
    width: 95px;
    max-width: 95px;
    margin-left: 6px;
    margin-top: 12px;
  }
  .floating-words {
    display: none;
  }
  .cards-grid,
  .event-grid,
  .gallery-grid,
  .board-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hero {
    min-height: 660px;
    padding: 80px 0 120px;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero h1 {
    font-size: clamp(40px, 8vw, 64px);
  }
  .hero-visual {
    bottom: 30px;
    opacity: 0.55;
  }
  .ribbon {
    font-size: 190px;
  }
  .shoes {
    font-size: 90px;
  }
  .event-card.featured {
    transform: none;
  }
  .gallery-carousel {
    width: min(1150px, 92%);
  }
  .gallery-slide {
    min-width: calc(50% - 13px);
  }
  .gallery-slide img {
    height: 280px;
  }
  .donate-box {
    flex-direction: column;
    text-align: center;
  }
  .contact-section .two-col {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: 90%;
  }
  .site-header {
    min-height: 78px;
    padding: 10px 4%;
    gap: 10px;
  }
  .logo {
    gap: 8px;
    min-width: 0;
  }
  .logo-icon {
    font-size: 30px;
  }
  .logo .script {
    font-size: 28px;
  }
  .logo strong {
    font-size: 10px;
    letter-spacing: 0.4px;
    line-height: 1.15;
  }
  .header-shoe {
    width: 56px;
    max-width: 56px;
    margin-left: 2px;
    margin-top: 4px;
  }
  .hamburger {
    width: 40px;
    height: 40px;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 120px;
  }
  .hero-content {
    width: 90%;
    padding-top: 0;
  }
  .eyebrow,
  .section-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions a,
  .donate-box .primary-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .ribbon {
    font-size: 130px;
  }
  .shoes {
    font-size: 70px;
  }
  .section {
    padding: 62px 0;
  }
  h2 {
    font-size: 32px;
  }
  .lead {
    font-size: 16px;
  }
  .two-col,
  .cards-grid,
  .event-grid,
  .board-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .mission-content {
    text-align: center;
  }
  .mission-content .lead {
    margin: auto;
  }
  .mission-image img {
    max-width: 260px;
  }
  .about-card,
  .program-card,
  .event-card,
  .contact-form {
    border-radius: 22px;
    padding: 26px;
  }
  .event-card {
    padding-top: 118px;
    min-height: auto;
  }
  .date-badge {
    width: 66px;
    height: 66px;
    top: 25px;
    left: 26px;
  }
  .date-badge strong {
    font-size: 14px;
  }
  .date-badge span {
    font-size: 24px;
  }
  .section-head {
    display: block;
    margin-bottom: 28px;
  }
  .small-link {
    margin-top: 6px;
  }
  .gallery-carousel {
    width: 90%;
    margin-top: 34px;
  }
  .gallery-track {
    gap: 18px;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
  }
  .gallery-slide {
    min-width: 100%;
    scroll-snap-align: start;
    border-radius: 20px;
  }
  .gallery-slide img {
    height: 245px;
  }
  .gallery-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .gallery-prev {
    left: 8px;
  }
  .gallery-next {
    right: 8px;
  }
  .donate-section {
    padding: 60px 0;
  }
  .donate-box {
    gap: 22px;
  }
  .contact-section .two-col {
    gap: 32px;
  }
  .contact-list p {
    font-size: 15px;
  }
  .contact-form h1 {
    font-size: 30px;
  }
  .contact-form h4 {
    font-size: 15px;
  }
  .contact-form input {
    min-height: 50px;
    font-size: 15px;
  }
  .contact-form button {
    padding: 14px 18px;
  }
  .footer {
    padding: 24px 18px 85px;
  }
  .footer p {
    font-size: 13px;
    line-height: 1.6;
  }
  .instagram-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 34px;
  }
  .logo .script {
    font-size: 24px;
  }
  .logo strong {
    font-size: 9px;
  }
  .logo-icon {
    font-size: 26px;
  }
  .header-shoe {
    width: 45px;
    max-width: 45px;
  }
  .primary-btn,
  .secondary-btn,
  .donate-btn {
    padding: 11px 18px;
    font-size: 13px;
  }
  .gallery-slide img {
    height: 220px;
  }
}
