/* Load font if not already */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&display=swap");


/* Apply globally */
body,
p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6,
button,
.navbar,
.section-title {
  font-family: "Montserrat", sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
}



body {
  /* font-family: "Montserrat"; */
  font-family: "Montserrat";
  line-height: 1.6;
  background: #f9f9f9;
  color: #000000;
}

.hero {
  background: url(...jpg) no-repeat center center/cover;
  height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease-out;
}
.hero p {
  animation: fadeInUp 1.5s ease-out;
}
.btn,
.btn-primary,
.btn-danger,
.btn-outline-primary {
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover,
.btn-primary:hover,
.btn-danger:hover,
.btn-outline-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add smooth scrolling spacing */
section {
  padding-top: 80px;
}

/* Footer styling */
footer {
  background: #030026;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Ticker styling aligned with aesthetic */
.marquee-wrapper {
  background-color: #0b2545 !important;
  color: white !important;
  font-family: "Montserrat" !important;
  font-size: 13px !important;
  padding: 4px 10px !important;
  height: 28px !important;
  overflow: hidden !important;
  line-height: 1.2 !important;
}

.marquee-wrapper marquee {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  color: white !important;
  line-height: 1.2 !important;
}

.hero-banner {
  background: url("https://www.globalgovernanceproject.org/wp-content/uploads/2022/06/Trudeau.jpg")
    center center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  text-align: center;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for text visibility */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  font-family: "Montserrat";
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
  font-size: 1.25rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content .btn {
  font-weight: bold;
  font-size: 1rem;
  animation: fadeInUp 1.5s ease-in-out;
}
.navbar,
.navbar.bg-dark,
.navbar.navbar-dark {
  background-color: #0b2545 !important;
  border: none;
  box-shadow: none;
}
.navbar-nav .nav-link {
  margin-left: 15px;
  font-weight: 600;
  font-size: 10px;
}

h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: center;
}

ul.highlight-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

ul.highlight-list li {
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  text-align: left;
}

/* Speakers page */
/* Hero banner */
.hero-banner {
  background: url("../images/speakers-hero.jpg") no-repeat center center/cover;
  height: 280px;
  color: white;
  display: flex;
  align-items: center;
}

.hero-banner h1 {
  font-size: 36px;
  font-family: "Lora", serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  font-size: 14px;
  margin-top: 10px;
  color: #eee;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.section {
  padding: 60px 0;
}

.light-bg {
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-family: "Archivo", sans-serif;
}

/* Speaker grid */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.speaker-card {
  text-align: center;
}

.speaker-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #ccc;
}

.speaker-card h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
}

.speaker-card p {
  font-size: 15px;
  color: #555;
}

/* main */

.hero-content {
  position: relative;
  z-index: 2;
  font-family: "Montserrat";
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
}

.hero-content .btn {
  margin-top: 20px;
  font-weight: bold;
  animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar,
.navbar.bg-dark,
.navbar.navbar-dark {
  background-color: #031926 !important;
}

.navbar,
.navbar-custom,
.marquee-wrapper,
.animated-heading {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box;
}


.navbar-brand-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* track */
.tracks-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: "Lora", serif;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.section-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 fixed columns */
  gap: 30px;
}


.track-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 25px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.track-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


.track-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.track-box h3 {
  font-size: 18px;
  color: #005a8d;
  margin-bottom: 15px;
}

.track-box ul {
  padding-left: 18px;
}

.track-box li {
  line-height: 1.6;
  font-size: 15px;
  color: #000000;
}

/* speakers */


.speaker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* all cards same height */
  gap: 40px;
}


.speaker-card {
  width: 240px; /* slightly bigger cards */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.speaker-card img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  border: none !important; /*  Add this line */
  box-shadow: none !important; /* In case shadow looks like a line */
}



.speaker-card h4 {
  font-size: 16px;
  margin: 10px 0 5px;
  font-weight: 600;
}

.speaker-card p {
  font-size: 14px;
  color: #444;
}

/* index.html */
#call h3,
#topics h2 {
  font-weight: 600; text-align: justify
}

#topics ul li {
  margin-bottom: 6px;
}

/* for phone */
@media (max-width: 768px) {
  /* Styles here apply to tablets and phones */
}

@media (max-width: 768px) {
  .navbar,
  .navbar-custom {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .navbar-nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
  }

}
@media (max-width: 768px) {
  .track-grid {
    grid-template-columns: 1fr; /* single column */
  }

  .track-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .speaker-grid {
    flex-direction: column;
    align-items: center;
  }

  .speaker-card {
    width: 90%;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .hero h1,
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero p,
  .hero-content p {
    font-size: 1rem;
  }

  .hero,
  .hero-banner {
    height: 60vh;
    padding: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .track-grid > .track-box:last-child:nth-child(odd) {
    justify-self: center;
  }
}

.animated-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #031926; /* navbar background */
  padding: 20px;
  margin-bottom: 30px;
  color: hsl(230, 100%, 95%);
  animation: lights 5s 750ms linear infinite;
  border-radius: 0px;
}

/* Animation */
@keyframes lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }

  30% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }

  40% {
    color: hsl(230, 100%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 90%, 0.5),
      -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
  }

  70% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }

  100% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}

.speaker-card .image-wrapper {
  border: none !important;
}

.college-image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.college-image-row img {
  width: 240px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: #fff;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}



.alumni-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  width: 100%; /* NEW — lets grid control size */
}


.alumni-card:hover {
  transform: translateY(-5px);
}

.alumni-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.alumni-card h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.alumni-card p {
  font-size: 13px;
  color: #555;
}

/* 3-column layout grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin: 40px auto;
  max-width: 1200px;
}

/* Individual flip card container */
.flip-card {
  perspective: 1000px;
  text-align: center;
}

/* Inner flip element */
.card-inner {
  position: relative;
  width: 100%;
  padding-top: 133%; /*  ratio for 240px height relative to 180px width */
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front and back faces */
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back face */
.card-back {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
}

/* LinkedIn icon styling */
.linkedin-icon {
  width: 50px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.linkedin-icon:hover {
  opacity: 1;
}

/* Coordinator name below card */
.coord-name {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  opacity: 0.85;
}

.social-icons a:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Background Video Styling */
.hero-banner {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Full-Width Image Banner with Heading */
.campus-hero {
  position: relative;
  width: 100%;
  height: 40vh; /* Smaller height */
  min-height: 220px; /* Optional: keep for phones */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


.campus-overlay {
  position: absolute;
  inset: 0; /* same as top: 0; bottom: 0; left: 0; right: 0; */
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}


.campus-heading {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

/* Text Below Image */
.campus-description {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.campus-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  margin-bottom: 20px;
}

.contact-section {
  padding: 40px 20px;
}

.contact-wrapper {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

.flip-card {
  width: 240px;
  height: 380px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0);
}

.card-front img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 2px;
}

.card-front h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.card-front p {
  font-size: 12px;
  color: #000000;
  text-align: center;
}

.card-back {
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}

.card-back a {
  text-decoration: none;
}

.linkedin-icon {
  width: 10px;
  height: 10px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.linkedin-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Cleaner look for student cards */
.student-card {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

/* Image section */
.student-card .card-front {
  background: transparent;
  padding: 0;
}

.student-card .card-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Reduce the gap between image and name */
.student-card .coord-name {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}

/* Flip effect stays same */
.student-card .card-inner {
  height: auto;
}

/* Bigger LinkedIn icon on hover */
.student-card .linkedin-icon {
  width: 40px;
  height: 40px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.student-card .linkedin-icon:hover {
  transform: scale(1.2);
}
 /* Student card back styling */
.student-card .card-back {
  background-color: #f9f9f9 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.student-coordinator-grid {
  gap: 25px !important;  /* or 20px, or even 15px */
  margin-top: 20px;
  margin-bottom: 40px;
}

footer {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.organising-committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.campus-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px; /* ↓ reduce space BELOW the heading */
  color: #000;
}


.campus-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.campus-image-wrapper img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.speaker-hover {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  width: 240px;
  height: 350px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.speaker-hover:hover {
  height: 460px; /* 👈 grows on hover */
}

.speaker-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.speaker-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.speaker-description {
  font-size: 14px;
  color: #333;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.speaker-hover:hover .speaker-description {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}

.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or space-between / space-evenly if preferred */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.speakers-img img {
  width: 100%;
  height: 240px; /* Increased from 200px */
  object-fit: contain; /* 👈 this ensures the full image fits in without cropping */
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Fancy animated gradient button */
.glow-btn-wrapper {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  border-radius: 0.9em;
  transition: all 0.4s ease;
  display: inline-block;
}

.glow-btn-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.glow-btn-wrapper:hover::before {
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  filter: blur(1.2em);
}

.glow-btn-wrapper:active::before {
  filter: blur(0.2em);
}

.animated-button {
  font-size: 1.1rem;
  padding: 0.6em 1.2em;
  border-radius: 0.5em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 2px 2px 3px #000000b4;
}

.navbar .glow-btn-wrapper {
  margin-left: 10px;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 20px;
  background-color: #f9f9f9;
  width: 100%;
}

.hero-banner {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Archivo', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 20px;
}

.navbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* nice breathing space on small screens */
}
