/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* nav*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(238, 31, 16);
    box-shadow: 0 2px 5px rgba(45, 44, 44, 0.333);
    z-index: 1000;
    transition: top 0.3s ease-in-out; /* Smooth transition */
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #de0d0d7a;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(Photos/Rutgers_Scarlet_Knights_logo.svg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    margin-left: 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d4092e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b71010a5;
}

/*about*/
.about {
    padding: 5rem 1rem;
    background-color: #fff;
}

.about h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}
.about h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.about-text h3:last-child {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* contacts */
.contact {
    padding: 5rem 1rem;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: #2c3e50;
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-content {
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .about-text {
        padding-right: 0;
    }
}


    