.nav-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(227, 27, 35, 0.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #E31B23;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.logo-text {
    background: linear-gradient(90deg, #E31B23, #1A1A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-primary {
    background-color: #E31B23;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(227, 27, 35, 0.25);
}

.btn-primary:hover {
    background-color: #c01820;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(227, 27, 35, 0.3);
}

.btn-outline {
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #fff;
    color: #E31B23;
    transform: translateY(-2px);
}