*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  color: #0c2340;
  overflow-x: hidden;
}

/* Parallax Background Layer */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("imgs/syracusewelcome.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  filter: brightness(0.6) blur(2px);
  transform: scale(1.05);
}
nav {
  position: sticky;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  border-bottom: 4px solid #0c2340;
  background: #d44500;
  padding: 1em 0;
  position: relative;
  z-index: 10;
  font-family: "Ubuntu", sans-serif;
}

@media screen and (max-width: 900px) {
  nav {
    grid-template-columns: 100%;
    grid-gap: 1em;
  }
}

.item1 {
  grid-column: 1;
}
.item2 {
  grid-column: 2;
}
.item3 {
  grid-column: 4;
}
.item4 {
  grid-column: 5;
}

.logo {
  grid-column: 3;
  background-image: url("imgs/cuselogo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 10vh;
}

/* Nav Links */
.navLinks {
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

.navLinks:hover {
  color: #0c2340;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 1em 1em;
}

/* === General main container styling === */
main.container {
  max-width: 900px;
  margin: 3rem auto 5rem;
  font-family: "proxima-nova", sans-serif;
}

/* === Section block styling === */
.section-block {
  padding: 3rem 1rem 2rem;
  border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgb(212 121 35 / 0.15);
  color: #4a2e0a;
}

.bg-light {
  background-color: #fff7f0;
}

.section-block h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #d8570a; /* brighter orange */
  border-bottom: 3px solid #d8570a;
  padding-bottom: 0.3rem;
}

/* === Facilities Icons Grid === */
.facilities-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgb(212 121 35 / 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgb(216 94 0 / 0.3);
}

.facility-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  filter: saturate(1.3) brightness(1.1);
}

.facility-card h3 {
  color: #d8570a;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.facility-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #6a4b23;
}

/* === Organizations Cards === */
#clubSearch {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  border: 2px solid #d8570a;
  border-radius: 6px;
  margin-bottom: 1.8rem;
  transition: border-color 0.3s ease;
  font-family: "proxima-nova", sans-serif;
}

#clubSearch:focus {
  border-color: #ff6f1e;
  outline: none;
  box-shadow: 0 0 8px #ff6f1eaa;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.org-card {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgb(212 121 35 / 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  outline-offset: 3px;
}

.org-card:hover,
.org-card:focus-visible {
  box-shadow: 0 12px 28px rgb(216 94 0 / 0.35);
  transform: translateY(-6px);
}

.org-card h3 {
  color: #d8570a;
  margin-bottom: 0.7rem;
  font-weight: 800;
  font-size: 1.3rem;
}

.org-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #604117;
}

/* === Parallax Section === */
.parallax-section {
  position: relative;
  height: 320px;
  background-image: url("https://via.placeholder.com/1500x900.png?text=Syracuse+University+Campus");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 4rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgb(216 94 0 / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "proxima-nova", sans-serif;
}

.parallax-overlay {
  background-color: rgba(216, 94, 0, 0.75);
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 700px;
  user-select: none;
}

.parallax-overlay h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.parallax-overlay p {
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* === Carousel Overrides === */
.carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgb(216 94 0 / 0.3);
}

.carousel .carousel-caption {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 1rem 1.5rem;
  border-radius: 0 0 15px 15px;
  color: #ffb05c;
  text-align: left;
}

.carousel .carousel-caption h3 {
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.carousel .carousel-caption p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* === Housing Cards === */
.housing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
}

.housing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 25px rgb(216 94 0 / 0.18);
  flex: 1 1 280px;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.housing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgb(216 94 0 / 0.35);
}

.housing-card h3 {
  color: #d8570a;
  font-weight: 900;
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
}

.housing-card p {
  font-size: 1rem;
  color: #604117;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

/* === Footer === */
footer {
  background-color: #2f2f2f;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-family: "proxima-nova", sans-serif;
  user-select: none;
  margin-top: 2rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  main.container {
    margin: 2rem auto 3rem;
    padding: 0 0.5rem;
  }

  .facilities-icons,
  .cards-container {
    grid-template-columns: 1fr !important;
  }

  .housing-cards {
    flex-direction: column;
  }
}
/* === Alumni Quote Generator === */
.quote-box {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(212 121 35 / 0.15);
}

blockquote {
  font-style: italic;
  font-size: 1.3rem;
  color: #4a2e0a;
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: bold;
  color: #d8570a;
  font-size: 1.1rem;
}

#newQuoteBtn {
  background-color: #d8570a;
  border: none;
  color: white;
  font-weight: 600;
}

#newQuoteBtn:hover {
  background-color: #ff6f1e;
}
h1{
   font-family: ShermanSerif, Georgia, serif;
  text-align: center;
  margin: 2rem 0;
  color: #d44500;
  font-weight: 700;
  font-size: 2.8rem;
  text-shadow: 2px 2px 5px #0c2340;
  margin-bottom: 100px;
  margin-top: 200px;
}