:root {
    --theme-beige: #FFFFFF;
    --theme-green: #ff6a00;
    --theme-dark-green: #111111;
    --theme-white: #FFFFFF;
}

/* Navbar Styles */
.navbar-custom {
    background-color: var(--theme-white);
    border-bottom: 1px solid rgba(255, 106, 0, 0.16);
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: var(--theme-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--theme-dark-green);
}

/* Theme Utilities */
.bg-theme {
    background-color: var(--theme-green);
}

.text-theme {
    color: var(--theme-green);
}

.btn-theme {
    background-color: var(--theme-green);
    color: var(--theme-white) !important;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: var(--theme-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Animation & Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.transition-all {
    transition: all 0.3s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Utility Classes */
.ls-2 {
    letter-spacing: 2px;
}

.opacity-10 {
    opacity: 0.1;
}

.object-fit-cover {
    object-fit: cover;
}

/* Hero Section Backgrounds */
.hero-bg {
    /* Mobile Default */
    background: linear-gradient(rgba(0,0,0,0.64), rgba(0,0,0,0.64)), url('../img/coverphoto.png') no-repeat center center;
    background-size: cover;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-bg {
        /* Desktop Override */
        background-image: linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)), url('../img/coverphoto.png');
    }
}
