/* Main Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
}

h1, .display-5, .navbar-brand {
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
}

/* Navbar Styles */
.navbar-brand img {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.rounded-navbar {
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    background: url("../img/_d90bb1aa-2162-4e3b-b530-ef6c96d560f0.jpg") center center/cover no-repeat;
    min-height: 70vh;
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 20px; /* Adjust as needed */
}

.hero-unit {
    background-color: #222; /* Change background color to dark */
    background-image: url('../img/_d90bb1aa-2162-4e3b-b530-ef6c96d560f0.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    mix-blend-mode: difference;
}

/* Buttons Hover Effect */
.btn {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #0d6efd;
}

/* Profile Card */
.profile-card {
    position: relative;
    cursor: pointer;
}

.profile-info {
    position: absolute;
    bottom: -100px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Adjust as needed */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: none;
}

.profile-card:hover .profile-info {
    display: block;
}

/* Footer */
footer, .footer {
    background: #212529;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-icons a {
    color: #fff;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 15px;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    
    .navbar-brand img {
        width: 30px;
        height: 30px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section::before {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn {
        border-width: 2px;
    }
}

