:root {
    --primary-color: #e32124; /* Logo Maroon */
    --accent-color: #FFC627;  /* ASU-style Gold for buttons */
    --dark-color: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

h1, h2, h3, .nav-link {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-color);
    background: white;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-apply {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
    border: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Gold Button */
.btn-gold {
    background-color: var(--accent-color);
    color: black;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #e5b122;
    transform: scale(1.05);
    color: black;
}

/* Stats Section */
.stats-bar {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-color);
}

/* Program Cards */
.program-card {
    border: none;
    border-radius: 20px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 60px 0 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        height: auto;
        padding: 100px 0;
    }

    .hero p {
        margin: 0 auto 30px auto;
    }
}

/* ===== TOP RED RIBBON ===== */
.top-ribbon {
    background: #e32124;   /* same as your screenshot red */
    color: white;
    font-size: 14px;
}

.ribbon-links a {
    color: white;
    text-decoration: none;
    padding: 10px 8px;
    display: inline-block;
    font-weight: 500;
}

.ribbon-links a:hover {
    text-decoration: underline;
}

.ribbon-links .divider {
    color: rgba(255,255,255,0.6);
    margin: 0 4px;
}

.ribbon-social a {
    color: white;
    margin-left: 12px;
    font-size: 15px;
}

.ribbon-social a:hover {
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .ribbon-links {
      font-size: 12px;
  }

  .ribbon-social {
      display: none;   /* hide icons on small screen */
  }
}

/* ===== FOOTER ===== */

.mit-footer {
    background: #000;
    color: #aaa;
    font-size: 14px;
}

/* LOGO */
.footer-logo{
    max-height: 70px;
}

/* TITLES */
.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* TEXT */
.footer-text {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-social a:hover{
    color:#e32124;
}

.footer-social i {
    color: #e32124;
    margin-right: 10px;
}

/* QUICK LINKS WITH LINES */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    border-bottom: 1px solid #1a1a1a;   /* LINE ADDED */
    padding: 10px 0;
}

.footer-links li:last-child{
    border-bottom:none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: white;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: start;
    line-height: 1.6;
}

.footer-contact i {
    color: #e32124;
    margin-top: 4px;
}

/* MAIN DIVIDER LINE */
.footer-divider{
    height:1px;
    background:#1a1a1a;
    margin-top:30px;
}

/* BOTTOM */
.footer-bottom {
    font-size: 13px;
    color: #777;
}

/* MOBILE */
@media(max-width:768px){
  .footer-title{
     text-align:left !important;
  }

  .footer-logo{
     margin-bottom:15px;
  }
}
