/* ==========================================================
   UHSC Debate Club - Main Stylesheet
   ========================================================== */

/* Global Styles */
body {
    background-color: #FDFBF7;
    color: #1B3B2B;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #C68800;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 9999;
    display: none;
}

@media (min-width: 992px) {
    .custom-cursor {
        display: block;
    }
}

/* Editorial Card Design */
.editorial-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(27, 59, 43, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 59, 43, 0.1);
}

/* Navbar Customizations */
.navbar {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2D8D0;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    color: #1B3B2B !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #1B3B2B !important;
    font-weight: 600;
    margin: 0 5px;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #990000 !important;
}

/* Buttons */
.btn-outline-dark {
    border-color: #1B3B2B;
    color: #1B3B2B;
    border-radius: 50rem;
    padding: 6px 20px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    background-color: #1B3B2B;
    color: #FFFFFF;
}

.btn-primary {
    background-color: #990000;
    border-color: #990000;
    border-radius: 50rem;
    padding: 8px 24px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #7a0000;
    border-color: #7a0000;
}

/* Animations */
@keyframes bounceIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-bounce {
    animation: bounceIn 1s infinite alternate;
}