/* creating a root to keep things more organized */

:root{
    --umd-red: #E21833;
    --umd-gold: #FFD200;
    --bg: #F6F7FB;
    --card: #FFFFFF;
    --border: rgba(17,24,39);
    --muted: #6B7280;
    --ink: #111827;

    --shadow-sm: 0 6px 18px rgba(17,24,39);
    --shadow: 0 10px 30px rgba(17,24,39);
    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1100px;
}


body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--ink);
    background: radial-gradient(900px 600px at 15% 0%, rgba(255,210,0,0.18), transparent 60%), 
    radial-gradient(900px 600px at 85% 10%, rgba(226,24,51,0.14), transparent 50%),
    var(--bg);
    

}


.header{
    position:sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e9e9e9;
  box-shadow: var(--shadow-sm);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;




}

.header_inner{

    max-width: var(--maxw);
    padding: 15px 21px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    
}

.brand{
    display: flex;
    gap:12px;
    min-width: 200px;
    align-items: center;
}

.brandLogo{
    height: 30px;
    width: 15px;
    border-radius: 1000px;
    background: linear-gradient(180 deg, var(--umd-red), #b9142a);
    box-shadow: 0 0 0 0 4px  rgb(206, 13, 38);
}

.brandName{
    font-weight: 900;
    letter-spacing: 0.2px;
    font-size: 30px;
}

.brandTag{
    font-size: 15px;
    color: var(--muted);

}

.logo{
    width:60px;
    height:60px;
    border-radius: 10px;
   background: #363b43;
    border: 1px solid black;
    padding: 4px;
    object-fit: contain;
   
}
/* Navigation buttons */

.navigation{
    display: flex;
    gap:10px;
    align-items: center;
    flex-wrap: wrap;
}

.navBtn{
    display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;

  background: #f4f4f4;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(17, 24,39);
  background:#e21833;
  color: #ffffff;

  transition: background 150ms ease, transform 150ms ease;
}

.navBtn:hover {
  background: #eaeaea;
 
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 10px 25px rgba(226, 24, 51, 0.22);
}

/* Page */


.page{
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 22px 20px 46px;
}

.hero{
    padding: 25px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 210, 0), rgba(226,24,51,0.08));
    border: 1px solid rgba(17, 24, 39);
    box-shadow: var(--shadow);
}

.hero h1{
    margin: 0 0 6px;
    font-size: 30px;
    letter-spacing: -0.3px;

}

.hero p{

    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

.grid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.card{
    background: var(--card);
    border: 1px solid rgba(17, 24, 39);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
}

.card h2{
    margin: 0 0 10px;
    font-size: 18px;
    
}

.card p, .card li{
    color: var(--muted);
}

.btn{

    display:inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 15px;
    border: 1px solid rgba(17, 24, 39);
    background: rgb(255, 255, 255);
    font-weight: 800;
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:hover{
    transform: translateY(-1px);
    background-color: rgba(226, 24, 51);
    background: rgba(226, 24, 51)
}

.btnPrimary{
    background:var(--umd-red);
    color: white;
    border: 0;
    box-shadow: 0 10px 25px rgba(226, 24, 51);
}

.btnPrimary:hover{
    background: #cf1630;
}

.divider{
    height: 1px;
    background: rgba(17, 24, 39);
    margin: 14px 0;

}
