/* Google Fonts Poppins */
body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom Theme Colors */
:root {
    --theme-red: #d32f2f; /* Deep red theme color */
    --theme-red-hover: #b71c1c;
}

.bg-theme-red {
    background-color: var(--theme-red) !important;
}

.text-theme-red {
    color: var(--theme-red) !important;
}

.btn-theme-red {
    background-color: var(--theme-red);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-theme-red:hover {
    background-color: var(--theme-red-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Navbar Enhancements */
.navbar-brand {
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Base Card Enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Ventures Section Dynamic Aesthetics */
.venture-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.venture-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.venture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.15) !important;
    border-color: rgba(211, 47, 47, 0.2);
}

.venture-icon-wrapper {
    transition: all 0.3s ease;
}

.venture-card:hover .venture-icon-wrapper {
    background-color: var(--theme-red) !important;
    color: white !important;
    transform: scale(1.1) rotate(5deg);
}
