/* HitmarkerText Font Face Declarations */
@font-face {
    font-family: 'HitmarkerText';
    src: url('fonts/HitmarkerText-Regular.woff2') format('woff2'),
         url('fonts/HitmarkerText-Regular.woff') format('woff'),
         url('fonts/HitmarkerText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HitmarkerText';
    src: url('fonts/HitmarkerText-Medium.woff2') format('woff2'),
         url('fonts/HitmarkerText-Medium.woff') format('woff'),
         url('fonts/HitmarkerText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HitmarkerText';
    src: url('fonts/HitmarkerText-Bold.woff2') format('woff2'),
         url('fonts/HitmarkerText-Bold.woff') format('woff'),
         url('fonts/HitmarkerText-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HitmarkerText';
    src: url('fonts/HitmarkerText-Italic.woff2') format('woff2'),
         url('fonts/HitmarkerText-Italic.woff') format('woff'),
         url('fonts/HitmarkerText-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

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

body {
    font-family: 'HitmarkerText', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: #cc1718;
    color: #1c1c1c;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Header */
.navbar {
    background-color: #1c1c1c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 60px;
}

.navbar nav ul li a {
    color: #cc1718;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.navbar nav ul li a:hover {
    background-color: rgba(204, 23, 24, 0.1);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Links Section (Now at top) */
.links-section {
    text-align: center;
    margin-bottom: 60px;
}

.links-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1c1c1c;
}

/* About Section */
.about-section {
    text-align: center;
    margin-bottom: 60px;
}

.about-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1c1c1c;
}

.pronouns {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.pronouns-note {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.link {
    color: #1c1c1c;
    text-decoration: underline;
    font-weight: 700;
}

.link:hover {
    opacity: 0.8;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #1c1c1c;
    color: #cc1718;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Specific icon adjustments */
.social-links a .fab.fa-twitter {
    font-size: 1.6rem;
}

.social-links a .fab.fa-steam {
    font-size: 1.7rem;
}

.social-links a .fas.fa-paw {
    font-size: 1.6rem;
}

.social-links a .fab.fa-youtube {
    font-size: 1.8rem;
}

.social-links a .fab.fa-discord {
    font-size: 1.8rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 60px;
}

.contact-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1c1c1c;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-link {
    color: #1c1c1c;
    text-decoration: underline;
    font-weight: 700;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Three Columns Section */
.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.column p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(28, 28, 28, 0.3);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.footer-link {
    color: #1c1c1c;
    text-decoration: underline;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar nav ul {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }
    
    .navbar nav ul li a {
        font-size: 16px;
    }
    
    .about-section h1 {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .three-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .column {
        text-align: center;
    }
    
    .contact-section h3,
    .links-section h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px 15px;
    }
    
    .about-section h1 {
        font-size: 2rem;
    }
    
    .pronouns, .description {
        font-size: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
