/* AntiTarheel Website Styles */

/* Variables */
:root {
    --college-navy: #002244;
    --action-green: #69BE28;
    --wolf-gray: #A5acaf;
    --white: #ffffff;
    --black: #000000;
    --primary-font: 'Josefin Sans', sans-serif;
    --secondary-font: 'Orbitron', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--white);
    background-color: var(--college-navy);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background.gif') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 34, 68, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--action-green);
}

.logo h1 {
    font-family: var(--secondary-font);
    font-size: 2rem;
    color: var(--action-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--action-green);
}

.nav-menu a.active {
    color: var(--action-green);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--action-green);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: var(--secondary-font);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--action-green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--wolf-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--action-green);
    color: var(--college-navy);
}

.primary-btn:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--action-green);
    color: var(--action-green);
}

.secondary-btn:hover {
    background-color: var(--action-green);
    color: var(--college-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Featured Content Section */
.featured-content {
    padding: 80px 0;
}

.featured-content .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: rgba(0, 34, 68, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--wolf-gray);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--action-green);
}

.content-card i {
    font-size: 3rem;
    color: var(--action-green);
    margin-bottom: 20px;
}

.content-card h3 {
    font-family: var(--secondary-font);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.content-card p {
    color: var(--wolf-gray);
}

/* CTA Section */
.cta-section {
    background-color: rgba(105, 190, 40, 0.1);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--secondary-font);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--action-green);
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--wolf-gray);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #a5acaf;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo h2 {
    font-family: var(--secondary-font);
    font-size: 1.8rem;
    color: var(--action-green);
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--wolf-gray);
}

.footer-links h3, .footer-social h3 {
    font-family: var(--secondary-font);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--action-green);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--action-green);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--action-green);
    transform: translateY(-5px);
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(165, 172, 175, 0.2);
}

.footer-bottom p {
    color: var(--wolf-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: rgba(0, 34, 68, 0.95);
        width: 80%;
        height: calc(100vh - 80px);
        padding: 40px;
        transition: all 0.5s ease;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .featured-content {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    header {
        padding: 15px 5%;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card i {
        font-size: 2.5rem;
    }
    
    .content-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
} 