.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: inline-block;
    /*    background-color: #25d366;*/
    /*    border-radius: 50%;*/
    /*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
    padding: 12px;
    transition: transform 0.2s ease-in-out;
}

    .whatsapp-float img {
        width: 65px;
        height: 65px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

.legal-container {
    margin-top: 60px; /* adjust as needed */
}

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/landing/Professional3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-welcome {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

    .hero-title em {
        font-style: italic;
        color: #ffffff;
        font-weight: 300;
    }

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-hero:hover {
        background-color: #34495e;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-hero:focus,
    .btn-hero:active {
        outline: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
        border: none !important;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-welcome {
        font-size: 11px;
    }
}

/* Navbar Profile Picture Styles */
.menu-img img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Profile Page Styles */
.profile-header-img {
    position: relative;
}

.profile-picture-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.profile-picture-upload .upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
    cursor: pointer;
}

.profile-picture-upload:hover .upload-overlay {
    opacity: 1;
}/* Sideb
ar Logout Button Styles */
.menu-item form button.menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    color: inherit;
    text-decoration: none;
    border: none;
    background: transparent !important;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-item form button.menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: inherit;
}

.menu-item form button.menu-link .menu-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.menu-item form button.menu-link .menu-text {
    flex: 1;
}/* Landin
g Page Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    /* Mobile auth buttons styling */
    .navbar-nav .nav-item .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Ensure hamburger menu is visible */
.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hamburger menu lines */
.navbar-toggler span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #6c757d;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.navbar-toggler span:last-child {
    margin-bottom: 0;
}

/* Animate hamburger menu */
.navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}/* 
Back to Landing Page Button Styles */
.btn-link.text-muted {
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-link.text-muted:hover {
    color: var(--bs-primary) !important;
    text-decoration: none;
}

.btn-link.text-muted i {
    transition: transform 0.2s ease;
}

.btn-link.text-muted:hover i {
    transform: translateX(-2px);
}

/* Account pages styling improvements */
.login-content, .register-content {
    position: relative;
}

/* Ensure proper spacing for back button */
.login-content form, .register-content form {
    padding-top: 0.5rem;
}

.reindeer-log {
    transition: background-color 0.3s ease, border-left-color 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid transparent;
}

.reindeer-log--current {
    border-left-color: var(--bs-primary);
    background-color: rgba(13, 110, 253, 0.08);
}

.reindeer-log--completed {
    opacity: 0.75;
}

.reindeer-log--incoming {
    background-color: rgba(13, 110, 253, 0.18);
}
