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

:root {
    /* Sloth Squa Dark Mode Colors */
    --primary-tan: #D4A574;
    --light-tan: #E8C49A;
    --dark-brown: #8B4513;
    --medium-brown: #A0522D;
    
    /* Dark Mode Base Colors */
    --bg-primary: #0D0D0D;
    --bg-secondary: #161616;
    --bg-tertiary: #1F1F1F;
    --bg-card: #1A1A1A;
    --bg-elevated: #242424;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #999999;
    --text-disabled: #666666;
    
    /* Border Colors */
    --border-primary: #333333;
    --border-secondary: #2A2A2A;
    --border-accent: var(--primary-tan);
    
    /* Accent colors for highlights */
    --accent-orange: #FF6B35;
    --success-green: #4CAF50;
    --warning-amber: #FFC107;
    --danger-red: #F44336;
    
    /* Shadows for dark mode */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(212, 165, 116, 0.3);
    
    /* Borders */
    --border-light: 1px solid var(--border-primary);
    --border-tan: 2px solid var(--primary-tan);
    --border-brown: 2px solid var(--medium-brown);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--primary-tan);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
}

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

h1 {
    padding: 1.5rem 0 0.5rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-tan) 0%, var(--medium-brown) 100%);
    box-shadow: var(--shadow-glow);
}

.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 1.5rem;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-bar li {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    background: var(--bg-tertiary);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
    border-color: var(--primary-tan);
    box-shadow: var(--shadow-glow);
}

.nav-link.active {
    color: var(--bg-primary);
    background: var(--primary-tan);
    border-color: var(--primary-tan);
    box-shadow: var(--shadow-glow);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-tan);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Content */
.body {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: calc(100vh - 140px);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Hero Sections */
.hero-section,
.page-hero {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--border-primary);
    border-top: 4px solid var(--primary-tan);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-tan) 0%, var(--medium-brown) 100%);
    box-shadow: var(--shadow-glow);
}

.hero-title,
.page-hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-tan) 0%, var(--light-tan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 165, 116, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Social Box */
.social-box {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-top: 4px solid var(--primary-tan);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-strong);
}

.social-box h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.social-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.social-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-button:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-elevated);
    border-color: var(--primary-tan);
}

.social-button:hover::before {
    left: 100%;
}

.social-button img {
    height: 48px;
    width: 48px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.social-button:hover img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
    transform: scale(1.1);
}

.social-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social-button:hover .social-text {
    color: var(--primary-tan);
}

.social-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.social-button:hover .social-subtitle {
    color: var(--text-secondary);
}

/* Content Sections */
.about-section,
.recruitment-section,
.teams-filter {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-top: 4px solid var(--medium-brown);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-strong);
}

.teams-filter {
    border-top: 4px solid var(--primary-tan);
    padding: 2rem;
    text-align: center;
}

.about-content,
.recruitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2,
.recruitment-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.about-content > p,
.recruitment-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Value/Benefit Cards */
.values-grid,
.recruitment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card,
.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.value-card::before,
.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-tan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover,
.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-elevated);
    border-color: var(--primary-tan);
}

.value-card:hover::before,
.benefit-item:hover::before {
    transform: scaleX(1);
}

.value-icon,
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.3));
}

.value-card h3,
.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p,
.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-tan) 0%, var(--medium-brown) 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--bg-primary);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--bg-primary);
}

.cta-buttons,
.recruitment-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--bg-primary);
    color: var(--primary-tan);
    border-color: var(--bg-primary);
}

.secondary-btn {
    background: transparent;
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.primary-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.secondary-btn:hover {
    background: var(--bg-primary);
    color: var(--primary-tan);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Teams Page Styles */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-tan);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teams-filter h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-primary);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--primary-tan);
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.filter-btn.active {
    background: var(--primary-tan);
    border-color: var(--primary-tan);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

/* Team Cards */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--border-primary);
    transition: all 0.3s ease;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-tan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-tan);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card.inactive {
    opacity: 0.5;
}

.team-image {
    position: relative;
    height: 200px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
}

.team-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    color: var(--primary-tan);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-tan);
}

.inactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-achievements {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.achievement {
    background: var(--bg-tertiary);
    color: var(--primary-tan);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--primary-tan);
}

.team-roster h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-roster ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.team-roster li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
}

.team-roster li:last-child {
    border-bottom: none;
}

.role {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-stats {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-primary);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.stat-value {
    font-weight: 700;
    color: var(--text-primary);
}

/* Footer Ticker */
.ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-primary);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-top: 3px solid var(--primary-tan);
}

.ticker-text {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    animation: scroll 25s linear infinite;
    color: var(--primary-tan);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

@keyframes scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Section Headers */
h2 {
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-tan) 0%, var(--medium-brown) 100%);
    box-shadow: var(--shadow-glow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-bar {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 3px solid var(--primary-tan);
        box-shadow: var(--shadow-strong);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-item {
        margin: 0.5rem 0;
        width: 80%;
        text-align: center;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .header-content {
        padding: 0 1rem;
        position: relative;
    }
    
    h1 {
        padding: 1rem 0 0.5rem;
        font-size: 1.8rem;
    }
    
    .nav-bar {
        padding: 0 0 1rem;
    }
    
    .hero-title,
    .page-hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .team-gallery {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: unset;
        margin-bottom: 1rem;
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .logo-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons,
    .recruitment-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid,
    .recruitment-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        right: 1rem;
    }
    
    .nav-item {
        width: 90%;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .hero-title,
    .page-hero h2 {
        font-size: 2rem;
    }
    
    .logo-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .social-button {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .social-button img {
        height: 40px;
        width: 40px;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-tan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-tan);
}

/* Focus states for accessibility */
*:focus {
    outline: 2px solid var(--primary-tan);
    outline-offset: 2px;
}

button:focus,
.nav-link:focus,
.social-button:focus {
    outline: 2px solid var(--primary-tan);
    outline-offset: 2px;
}

/* Text selection */
::selection {
    background: var(--primary-tan);
    color: var(--bg-primary);
}