* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #b0210b8f;
  line-height: 1.6;
}
 
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
  background: rgba(15, 0, 12, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 204, 51, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
 
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
}
 
.nav-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 204, 51, 0.5);
}
 
.nav-brand-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
 
.nav-brand-text strong {
  color: #ffcc33;
  font-weight: 700;
}
 
.nav-logo {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.1rem;
 
}
 
.cfb-letter {
  width: 100px;
  height: 50px;
}
 
.nav-logo .highlight {
  color: #ffcc33;
}
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
 
.nav-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.8;
  padding: 0.3rem 0;
  transition: opacity 0.2s ease;
}
 
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffcc33;
  transition: width 0.25s ease;
}
 
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}
 
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
 
@media (max-width: 640px) {
  .top-nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
  }
  .nav-links {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Scroll-snap container ---------- */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.snap-section {
  min-height: 100vh;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .scroll-container {
    scroll-snap-type: none; /* Disables snapping context */
    height: auto;
  }
  .snap-section {
    height: auto;
    min-height: auto;
    padding: 7rem 1.5rem 4rem; /* Adds breathing room for text */
  }
}

/* ---------- Fade-in on scroll ---------- */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero / Title section ---------- */
.hero-section {
  background: linear-gradient(160deg, #ffffff 0%, #ffffffe1 100%);
  color: #fff;
  position: relative;
}

.hero-section {
  perspective: 800px;
}

.club-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
}

.spin-logo {
  animation: dreidel-spin 4.0s linear infinite;
  transform-style: preserve-3d;
}

@keyframes dreidel-spin {
  0%   { transform: rotateY(0deg)   rotateX(4deg); }
  25%  { transform: rotateY(90deg)  rotateX(-4deg); }
  50%  { transform: rotateY(180deg) rotateX(4deg); }
  75%  { transform: rotateY(270deg) rotateX(-4deg); }
  100% { transform: rotateY(360deg) rotateX(4deg); }
}

.club-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.club-title .highlight {
  color: #ffcc33;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffcc33;
  border-bottom: 2px solid #ffcc33;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.miss-head {
  padding-bottom: 110px;

}

.miss-p {
  padding-bottom: 60px;
}

.about-head {
  padding-bottom: 40px;
}

/* ---------- Left-aligned section override (About page intro) ---------- */
.left-section {
  align-items: flex-start;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.left-section p {
  max-width: 700px;
}

/* ---------- Big bold headline section (About page intro) ---------- */
.header-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a0019;
  margin-bottom: 1.25rem;
}

.eyebrow-line {
  width: 40px;
  height: 2px;
  background: #d69404;
  display: inline-block;
}

.cfb-big-title {
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: #1a0008;
}

.cfb-big-title .highlight {
  color: #e6b916;
}

/* ---------- Section headings ---------- */

.snap-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: #c28e1e;
}

#mission p {
  font-size: 1.15rem;
  color: #333;
  max-width: 700px;
}

.miss-head {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding-top: 20px;
}

.miss-p {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
/* ---------- Gallery section ---------- */
#gallery {
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 100%);
}
 
#gallery h2 {
  color: #ebb427;
}

.members-text {
  padding-bottom: 50px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}





/* ---------- About page ---------- */
.about-page {
  padding-top: 5rem;
}

.about-hero {
  background: linear-gradient(160deg, #000000 0%, #6d0983 100%);
  color: #fff;
  padding: 4rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(255, 204, 51, 0.6);
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 1px;
}

.about-title .highlight {
  color: #ffcc33;
}

.about-tagline {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: left;
}

.about-content h2 {
  color: #7a0019;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p {
  font-size: 1.05rem;
  color: #333;
}

.about-footer {
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-size: 0.85rem;
}

.members-gallery {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

/* ---------- Diagonal stripe accent ---------- */

.diagonal-stripes {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  pointer-events: none;
  z-index: 1;
}

.scroll-container > section {
  position: relative;
  z-index: 2;
}

.stripe {
  position: absolute;
  top: -30%;
  height: 160%;
  width: 30px;
  transform: rotate(18deg);
}

.stripe-1 {
  right: 180px;
  background: #861a07fc;
  
}

.stripe-2 {
  right: 120px;
  background: #a17d04;
}

.stripe-3 {
  right: 60px;
  background: #000000;
}

@media (max-width: 640px) {
  .diagonal-stripes {
    display: none;
  }
}

.footer-text {
  font-size: 13px;
}

h2.mem-head {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  color: #651616;
  margin-right: 0;
  text-align: left;
}

@media (max-width: 768px) {
  h2.mem-head {
    margin-right: 0;
    text-align: center;
  }
}


.member-section {
  gap: 0;
}
 
.member-role.member-role {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ce930b;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  padding-top: 10px;
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  position: relative;
  z-index: 1;
}


.fade-section.visible .member-role {
  opacity: 1;
  transform: translateX(0);
}

 
.member-content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .member-content {
    flex-direction: column;
    align-items: center; /* Centers photo frames on phones & iPads */
    text-align: center;
    gap: 1.5rem;
  }
  
  .member-photo {
    width: 220px; /* Slightly smaller photo footprints for small touch devices */
  }
  
  .member-role.member-role {
    text-align: center;
    transform: none; /* Eliminates weird horizontal slide jumps on mobile */
  }
}

.member-photo-frame {
  padding: 14px;
  background: linear-gradient(160deg, #7a0019 0%, #4d0010 100%);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}
 
.member-photo-inner {
  padding: 6px;
  background: #fff;
  border-radius: 12px;
}
 
.member-photo {
  display: block;
  width: 260px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}
 
.member-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
 
.member-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #7a0019;
  margin: 0;
}
 
.member-meta {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.member-section {
  position: relative;
  overflow: hidden;
}
 
.bg-star {
  position: absolute;
  background: #7a0019;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%,
    79% 91%, 50% 70%, 21% 91%, 32% 57%,
    2% 35%, 39% 35%
  );
}
 
.bg-star-1 {
  width: 110px;
  height: 110px;
  top: 10%;
  right: 22%;
  transform: rotate(12deg);
  opacity: 1;
}
 
.bg-star-2 {
  width: 65px;
  height: 65px;
  bottom: 12%;
  right: 30%;
  transform: rotate(-10deg);
  background: #b08322;
  opacity: 1;
}

 
.bg-star-4 {
  width: 85px;
  height: 85px;
  bottom: 6%;
  left: 40%;
  transform: rotate(-18deg);
  background: #b08322;
  opacity: 1;
}

.bg-star-5 {
  width: 50px;
  height: 50px;
  bottom: 6%;
  left: 50%;
  transform: rotate(-18deg);
  opacity: 1;
}


 
@media (max-width: 640px) {
  .member-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Bootstrap Premium Minimal Hero Section ---------- */
.bootstrap-style {
  /* Rich corporate background tint (swap color codes if you want grey/black/orange) */
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  height: 100vh; /* Keeps full view-snap container symmetry */
}

.mission-content-wrapper {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

/* Massive, bold all-caps title */
.bootstrap-heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 700;
  color: #b4791b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Horizontal short divider signature accent line */
.bootstrap-divider {
  max-width: 3.25rem;
  height: 0.25rem;
  background-color: #ffcc33; /* Bright contrasting Gold accent */
  border: none;
  border-radius: 4px;
  margin: 1.5rem auto;
  opacity: 1;
}

/* Clean, high-readability paragraph block text */
.bootstrap-lead {
  font-family: "Georgia", Cambria, "Times New Roman", Times, serif; /* Clean serif style matches template image */
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85); /* Slightly muted white accent for high readability */
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Premium rounded pill action button */
.bootstrap-btn {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  
  /* Vibrant accent color scheme matching the template layout button */
  background-color: #b89d24; /* Coral Red/Orange button color */
  color: #ffffff;
  
  padding: 1.25rem 2.5rem;
  border-radius: 50px; /* Seamless oval curves */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Smooth button interactivity feedback states */
.bootstrap-btn:hover {
  background-color: #9e2616; /* Slightly deeper tint on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bootstrap-btn:active {
  transform: translateY(0);
}

/* ---------- Premium Animated Footer & Info Section ---------- */
.modern-footer-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 2rem;
  height: 100vh;
}

.footer-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.footer-main-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #7a0019; /* Carlson Maroon */
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

/* Info Grid Positioning */
.interactive-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-bottom: auto;
  padding-top: 1rem;
}

/* Card Style & Micro-Interactions */
.premium-footer-card {
  background: #ffffff;
  padding: 2.25rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(122, 0, 25, 0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
}

/* Subtle Hover Lift & Shadow Glow */
.premium-footer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 148, 4, 0.3); /* Gold Tint */
  box-shadow: 0 20px 38px rgba(122, 0, 25, 0.06), 0 4px 12px rgba(214, 148, 4, 0.03);
}

/* Color Accent Lines Top Border */
.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7a0019, #d69404);
}

.premium-footer-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7a0019;
  margin-bottom: 1rem;
}

.premium-footer-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4a4a;
}

/* Animated Interaction Links */
.animated-link-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.footer-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: #fafafa;
  border-radius: 10px;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.arrow-svg {
  width: 16px;
  height: 16px;
  transform: translateX(0);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Link Hover State Transitions */
.footer-action-link:hover {
  background: #7a0019;
  color: #ffffff;
}

.footer-action-link:hover .arrow-svg {
  transform: translateX(4px);
}

/* Highlight CTA Call to Action style */
.footer-action-link.accent-btn {
  background: rgba(214, 148, 4, 0.1);
  color: #b08322;
  border: 1px solid rgba(214, 148, 4, 0.2);
}

.footer-action-link.accent-btn:hover {
  background: #d69404;
  color: #ffffff;
  border-color: #d69404;
}

/* Meta Footer Section styling */
.site-sub-footer {
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: rgba(122, 0, 25, 0.1);
  margin-bottom: 1.5rem;
}

.copyright-text {
  font-size: 0.85rem;
  color: #6a6a6a;
  letter-spacing: 0.3px;
}

.copyright-text strong {
  color: #7a0019;
}

/* Mobile Responsive Optimization adjustments */
@media (max-width: 768px) {
  .modern-footer-section {
    height: auto;
    padding: 4rem 1.25rem 2rem;
  }
  .interactive-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .footer-main-title {
    font-size: 1.8rem; /* Shrinks the massive "GET INVOLVED" heading on mobile */
  }

  .premium-footer-card h3 {
    font-size: 1.15rem; /* Shrinks card titles (Events, Join Us, Contact) */
  }

  .premium-footer-card p {
    font-size: 0.85rem; /* Shrinks the description paragraphs */
    line-height: 1.5;
  }

  .footer-action-link {
    font-size: 0.8rem; /* Shrinks button link text */
    padding: 0.7rem 1rem; /* Compacts button padding slightly */
  }
  #mission p {
    font-size: 0.95rem; /* Shrinks the mission text from 1.15rem to a cleaner size for phones */
    line-height: 1.5;   /* Keeps it highly readable on small screens */
  }
}

/* ---------- Premium Section Header & Spacing Overrides ---------- */

.footer-header-block {
  text-align: center;
  width: 100%;
  padding-bottom: 3.5rem; /* Generates breathing space between the header and cards below */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-main-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: #7a0019; /* Carlson Maroon */
  letter-spacing: 1px;
  text-transform: uppercase; /* All caps to make the section stand out cleanly */
  margin-bottom: 1rem;
}

/* Horizontal accent line matching the Mission styling theme */
.header-accent-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #7a0019, #d69404);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.footer-sub-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  color: #555555;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Adjusting the master layout box container flow */
.modern-footer-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Flows naturally from the top rather than jamming in the center */
  padding: 7rem 2rem 3rem; /* Extra top room to keep clear from your fixed navigation menu bar */
  height: 100vh;
}

.footer-container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Grid layout padding adjustments */
.interactive-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  width: 100%;
  margin-bottom: auto; /* Pushes the copyright block down to the base */
}

