/* :ROOT — DESIGN TOKENS */
:root {

  /* Primary Colors */
  --primary-color: #BA0C2F;
  --primary-light: #E4002B;
  --primary-extra-light: #f5c6ce;

  /* Secondary Colors */
  --secondary-color: #000000;
  --secondary-light: #1a1a1a;
  --secondary-extra-light: #2a2a2a;

  /*  Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --neutral-warm: #D6D2C4;
  --neutral-dark: #554F47;
  --neutral-mid: #9EA2A2;
  --neutral-light: #f5f4f1;

  /* Text Colors */
  --text-primary: var(--black);
  --text-secondary: var(--neutral-dark);
  --text-light: var(--neutral-mid);
  --text-on-dark: rgba(255, 255, 255, 0.68);
  --text-on-dark-strong: #ffffff;

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-body: 'Merriweather Sans', sans-serif;

  /* Heading Sizes  */
  --heading-xl: clamp(2rem, 5vw, 3.5rem);
  --heading-lg: clamp(1.65rem, 3vw, 2.5rem);
  --heading-md: clamp(1.25rem, 2vw, 1.75rem);
  --heading-sm: 1.05rem;

  /* Body Text Sizes  */
  --text-lg: 1.125rem;
  --text-md: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /*  Spacing */
  --gap: 1.5rem;
  --gap-sm: 0.75rem;
  --gap-lg: 2.5rem;
  --section-padding: 5rem;
  --navbar-h: 76px;

  /*  Borders & Radii  */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --border-brand: 3px solid var(--primary-color);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.07);

  /* Shadows*/
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-red: 0 4px 18px rgba(186, 12, 47, 0.38);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-mid: 0.25s ease;
  --transition-slow: 0.35s ease;
}


/*GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Merriweather+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&display=swap');


/* RESET & BASE*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


/*  HEADING UTILITY CLASSES*/
.heading-xl {
  font-family: var(--font-heading);
  font-size: var(--heading-xl);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: var(--heading-md);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: var(--heading-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heading-xl.on-dark,
.heading-lg.on-dark,
.heading-md.on-dark,
.heading-sm.on-dark {
  color: var(--white);
}

.text-brand {
  color: var(--primary-color);
  font-style: normal;
}


/* PARAGRAPH UTILITY CLASSES */
.paragraph-lg {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text-primary);
}

.paragraph-md {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-primary);
}

.paragraph-sm {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--text-secondary);
}

.paragraph-xs {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1.55;
  color: var(--text-light);
}

.paragraph-lg.on-dark {
  color: var(--text-on-dark);
}

.paragraph-md.on-dark {
  color: var(--text-on-dark);
}

.paragraph-sm.on-dark {
  color: rgba(255, 255, 255, 0.55);
}

.on-dark strong {
  color: var(--text-on-dark-strong);
  font-weight: 600;
}

.paragraph-lg a,
.paragraph-md a,
.paragraph-sm a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.paragraph-lg a:hover,
.paragraph-md a:hover,
.paragraph-sm a:hover {
  color: var(--primary-light);
}


/*  SHARED BUTTON STYLES */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  background: var(--secondary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.52rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--secondary-extra-light);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.52rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  color: var(--white);
}

/* Navbar-specific buttons (slightly smaller) */
.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.52rem 1.35rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-signup:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--secondary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--secondary-color);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-login:hover {
  background: var(--secondary-extra-light);
  transform: translateY(-1px);
  color: var(--white);
}


/* DIVIDERS */
.divider-brand {
  border: none;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), rgba(186, 12, 47, 0.08));
  margin: 1.25rem 0;
}

.divider-subtle {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1rem 0;
}


/*  LAYOUT HELPERS */
.section-pad {
  padding: var(--section-padding) 0;
}

.section-pad-sm {
  padding: calc(var(--section-padding) / 2) 0;
}


/*  TOP UTILITY BAR */
.top-bar {
  background: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 0.38rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--neutral-mid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.top-bar-left strong {
  color: var(--primary-color);
}

.top-bar-right {
  display: flex;
  gap: 1.1rem;
}

.top-bar-right a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #777;
  transition: color var(--transition-fast);
}

.top-bar-right a:hover {
  color: var(--white);
}


/* NAVBAR */
.uga-navbar {
  background: var(--white);
  height: var(--navbar-h);
  position: sticky;
  top: 0;
  z-index: 1040;
  border-bottom: var(--border-brand);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-slow);
}

.uga-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand-logo {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-links li a {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  display: block;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Hamburger toggler */
.nav-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  padding: 0.42rem 0.55rem;
  cursor: pointer;
  position: relative;
  z-index: 1060;
}

.nav-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggler.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggler.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggler.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/*  MOBILE NAV DRAWER */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1049;
  transition: background 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  display: block;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  border-left: var(--border-brand);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-header {
  background: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.mobile-nav-header img {
  height: 30px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
  padding: 0;
}

.mobile-nav-close:hover {
  opacity: 1;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  flex: 1;
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
  padding: 0.85rem 1.35rem;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav ul li a::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.mobile-nav ul li a:hover {
  color: var(--primary-color);
  background: var(--neutral-light);
  padding-left: 1.55rem;
}

.mobile-nav ul li a:hover::before {
  opacity: 1;
}

.mobile-nav-auth {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.mobile-nav-auth .btn-signup,
.mobile-nav-auth .btn-login {
  justify-content: center;
  font-size: 0.82rem;
  width: 100%;
}


/* SIGN-UP MODAL  */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalDrop 0.3s cubic-bezier(.22, .68, 0, 1.2);
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
}

@keyframes modalDrop {
  from {
    opacity: 0;
    transform: translateY(-28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-head {
  background: var(--primary-color);
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.modal-head h4 {
  font-family: var(--font-heading);
  font-size: var(--heading-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.modal-head h4 img {
  height: 22px;
  margin-right: 0.6rem;
  vertical-align: middle;
  display: inline;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  padding: 0;
}

.modal-close:hover {
  opacity: 1;
}

.modal-body-wrap {
  padding: 1.6rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body-wrap::-webkit-scrollbar {
  width: 5px;
}

.modal-body-wrap::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.modal-body-wrap::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-option {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.modal-option:last-child {
  margin-bottom: 0;
}

.modal-option:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(186, 12, 47, 0.1);
}

.modal-option h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.modal-option p {
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.btn-option {
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.35rem 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: inline-block;
}

.btn-option:hover {
  background: var(--primary-light);
}


/* FOOTER */
.site-footer {
  background: var(--secondary-light);
  border-top: var(--border-brand);
  padding: 3rem 0 0;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.15rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: color var(--transition-fast);
}

.footer-links li a i {
  font-size: 0.72rem;
}

.footer-links li a:hover {
  color: var(--primary-color);
}

.footer-contact-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-link a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-contact-link a:hover {
  color: var(--primary-light);
}

.footer-contact-detail {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.95;
  margin-top: 0.8rem;
}

.footer-contact-detail i {
  color: var(--primary-color);
  margin-right: 0.42rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.22s;
}

.soc-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  margin-top: 1rem;
  transition: background var(--transition-fast);
}

.footer-partner-badge:hover {
  background: rgba(255, 255, 255, 0.09);
}

.fpb-label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fpb-name {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.45);
  margin-top: 2.5rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  color: var(--primary-color);
}


/* RESPONSIVE — SHARED BREAKPOINTS */
@media (max-width: 991.98px) {

  .nav-links,
  .nav-auth {
    display: none;
  }

  .nav-toggler {
    display: flex;
  }
}

@media (max-width: 767.98px) {
  :root {
    --navbar-h: 66px;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .top-bar-right {
    justify-content: center;
  }

  .nav-brand-logo {
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .modal-body-wrap {
    padding: 1rem;
  }
}