:root {
    --primary-blue: #0d6efd;
    /* Vibrant Blue */
    --primary-dark: #0a58ca;
    --accent-red: #dc3545;
    /* Vibrant Red */
    --accent-red-hover: #bb2d3b;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 800;  /* Increased from 600 to 800 to match navbar-brand */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    color: var(--text-light) !important;  /* Ensure consistent light color */
    transition: all 0.3s ease;
    padding: 10px 15px !important;  /* Add padding for better visibility */
}

.nav-link:hover {
    color: white !important;  /* Even lighter on hover for better visibility */
    background-color: rgba(255, 255, 255, 0.1) !important;  /* Subtle background on hover */
    border-radius: 5px;  /* Rounded corners on hover */
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-danger,
.btn-warning {
    /* Using warning as red accent for now if needed, or override */
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover,
.btn-warning:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0043a8 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"><circle cx="3" cy="3" r="3"/><circle cx="13" cy="13" r="3"/></g></svg>');
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-scale {
    transition: transform 0.3s ease;
    display: inline-block;
}

.hover-scale:hover {
    transform: scale(1.2);
    color: var(--accent-red) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.event-card .card-img-top {
    transition: transform 0.5s ease;
}

.event-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Social Feed */
.social-scroll-container {
    padding: 20px 0;
    background: #f8f9fa;
}

.social-card {
    min-width: 300px;
    width: 320px;
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Make TikTok embeds responsive */
.tiktok-embed-container {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 aspect ratio */
    height: 0;
}

.tiktok-embed-container blockquote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* General embed container styling */
.embed-container {
    width: 100%;
    position: relative;
}

.embed-container iframe,
.embed-container blockquote,
.embed-container embed,
.embed-container video,
.embed-container audio {
    width: 100%;
    border: none;
}

/* Footer */
footer a {
    text-decoration: none;
}