/* Import Unbounded for display headings */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&display=swap');

/* Accent colors */
:root {
  --blue-medium: #005288;  /* PMS 2955C */
  --gold: #FFD200;         /* PMS 116C */
  --blue-light: #37AAFF;   /* PMS 299C */
  --paper: #fff;        /* used in Rush section */
  --ink: #0F172A;          /* used in Rush section text */
}

/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;  /* body stays readable */
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: center;   /* center everything */
  align-items: center;
  background: #fff;
  padding: 10px 40px;
  gap: 300px;                 /* space between logo and nav */
}

header img {
  height: 70px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--blue-medium);
  font-weight: 500;
}

nav a:hover {
  color: var(--blue-light);
}

/* Hero section */
.hero {
  position: relative;
  height: 90vh;

  background-image: url("/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 24px;
    height: 24px;
    border-left: 6px solid var(--gold);
    border-bottom: 6px solid var(--gold);
    opacity: 1; /* start fully visible */
    transition: opacity 0.2s linear;
  }


/* Use Unbounded for marquee + hero headings */
.hero h1,
.hero h2,
.marquee span {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 800; /* keep bold for presence with Unbounded */
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 25px;
  margin: 10px;
  text-decoration: none;
  font-size: 0.75rem; 
  background: var(--gold);
  color: var(--blue-medium);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover: swap text and background */
.btn:hover {
  background: var(--blue-light);
  color: var(--blue-medium);
}

/* Marquee banner */
.marquee{
  background: #fff;
  overflow: hidden;
  /*
  border-top: 8px solid var(--blue-medium);
  border-bottom: 8px solid var(--blue-medium);
  */
}
.marquee-track{
  display: flex;
  gap: 5rem;
  white-space: nowrap;
  padding: 8px 0;
  animation: scroll-x 28s linear infinite;
}
.marquee span{
  /* font-family + weight set above with Unbounded block */
  font-size: clamp(3rem, 8vw, 10rem);
  color: var(--blue-medium);
  text-transform: uppercase;
}
@keyframes scroll-x{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
  
/* Rush Section */
.rush {
    background: var(--paper);
    color: var(--ink);
    padding: 40px 24px 72px;
    margin-top: 0;
}

.rush-title {
    text-align: center;
    color: var(--blue-medium);
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 24px;
}

.rush-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal columns */
  gap: 40px;                      /* space between text and image */
  align-items: start;
}

.rush-text {
  grid-column: 1;
  grid-row: 1;
  padding: 0 8px;
  min-width: 0; /* prevents overflow */
}

.rush-image {
  grid-column: 2;
  grid-row: 1;
  justify-self: end; /* stick to the right */
  min-width: 0;
  max-height: 50vw;
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 12px;
  font-weight: 900;
  padding-top: 75px;
}
.mt{ margin-top: 40px; }

.subhead{
  color: var(--blue-medium);
  margin: 18px 0 8px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.events, .rush-contacts{
  list-style: none;
  padding: 0; margin: 0 0 14px 0;
}

/* Schedule events: 2-column layout */
.events li {
    display: grid;
    grid-template-columns: 1fr auto; /* left = event name/location, right = time */
    align-items: center;
    margin: 8px 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    gap: 12px;
  }
  
  .event-name,
  .event-location {
    text-align: left;
  }
  
  .event-info,
  .event-time {
    text-align: right;
  }
  
  
  /* Rush contacts: 3-column layout */
  .rush-contacts li {
    display: grid;
    grid-template-columns: 1fr 1fr auto; /* job | name | phone */
    align-items: center;
    margin: 8px 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    gap: 12px;
  }
  
  .rush-job {
    text-align: left;
  }
  
  .rush-name {
    text-align: center;
  }
  
  .rush-phone {
    text-align: right;
  }
  

.rush-image img{
  width: 100%;
  height: auto;
  max-width: 620px; /* optional cap so it doesn’t dominate */
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}



/* Responsive */
@media (max-width: 960px){
  .rush-inner{ 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  .rush-text  { grid-column: 1; grid-row: 1; }
  .rush-image { grid-column: 1; grid-row: 2; justify-self: center; }
}








/* Principles section */
.principles {
    background: #fff;
    color: var(--ink);
    padding: clamp(40px, 6vw, 80px) 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  /* Two-column stays the same */
.principles-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* left: credo | right: values */
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
  }
  
  /* Make sure the left column (credo) stacks title above paragraph */
  .principles-intro {
    display: block;                /* force normal block flow (stack) */
  }
  
  /* Center the header above the text */
  .principles-title {
    font-family: 'Unbounded', sans-serif;
    color: var(--blue-medium);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 12px;
    text-align: center;            /* centered heading */
  }
  
  /* Credo paragraph(s) under the title, left-aligned */
  .principles-lead {
    margin: 0;
    color: #17324a;
    line-height: 1.65;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    text-align: left;              /* keep text left-aligned */
    max-width: 60ch;               /* comfortable line length */
  }
  
  /* Right column grid of values (unchanged, shown for context) */
  .principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 24px);
  }  
  
  .principle {
    background: #f7fafc;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    padding: 20px 18px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }
  
  .principle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
    border-color: rgba(0,0,0,0.12);
  }
  
  .principle .badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--blue-medium);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 10px;
  }
  
  .principle h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--blue-medium);
  }
  
  .principle p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #203a52;
  }
  
  /* Responsive */
  @media (max-width: 960px) {
    .principles-grid {
      grid-template-columns: 1fr;
    }
  }
  



  /* Contact Section */
.contact {
    background: var(--blue-medium);
    color: #fff;
    padding: clamp(40px, 6vw, 80px) 24px;
    text-align: center;
  }
  
  .contact-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .contact-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 12px;
    color: var(--gold);
  }
  
  .contact-lead {
    margin: 0 0 28px;
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    margin: 12px 0;
    font-size: 1.05rem;
  }
  
  .contact-list .contact-label {
    display: block;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
  }
  
  .contact-list a {
    color: #fff;
    text-decoration: none;
  }
  
  .contact-list a:hover {
    color: var(--blue-light);
  }
  
  .contact-list a[href*="instagram.com"]::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background: url('images/instagram-icon.png') no-repeat center center / contain;
    vertical-align: text-bottom;
  }
  














/* Executive Board Section */
.exec-board {
    background: var(--paper);
    color: var(--ink);
    padding: clamp(40px, 6vw, 80px) 24px;
  }
  
  .exec-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .exec-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--blue-medium);
    margin-bottom: 40px;
  }
  
  .exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }
  
  .exec-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  .exec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }
  
  .exec-card img {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: block;
  }
  
  .exec-card h3 {
    margin: 8px 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-medium);
  }
  
  .exec-card .role {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
  }
  
  .exec-card .contact {
    font-size: .95rem;
    color: #333;
  }
  









/* Countdown Section */
.rush-countdown {
  background-image: url("/images/animal-house.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* background: #fff; */
  color: var(--ink);
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 24px;
  height: 100vh;
}

.rush-countdown-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-top: 15vh;
  color: #ffffff;
}

/* Big countdown digits */
.countdown {
  font-family: 'Unbounded', sans-serif;
  font-size: 9vw;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Long Rush Now button */
.rush-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 18px 0;
  background: var(--gold);
  color: var(--blue-medium);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.rush-btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}




.contact-page {
    background: var(--blue-medium);
    color: #fff;
    padding: clamp(40px, 6vw, 80px) 24px;
    text-align: center;
    height: 90vh;
  }