/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    background: rgb(247, 247, 247);
}

/* Login Section */
.login-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Login Button */
.login-btn {
    padding: 10px 15px;
    background: #0c80c4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover Effect */
.login-btn:hover {
    background: #0a0a0a;
    transform: scale(1.1);
}

/* User Icon */
.user-icon {
    width: 40px;  /* Adjust size */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgb(252, 252, 252);
    transition: transform 0.3s ease;
}

/* Hover Effect for User Icon */
.user-icon:hover {
    transform: scale(1.1);
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgb(255, 255, 255);
}

/* Scrolling Section */
.scroll-section {
    width: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide img {
    width: 90%;
    height: auto;
    max-height: 70vh;
    object-fit: none;
    filter: blur(5px);
    border-radius: 10px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover effect for images */
.slide img:hover {
    filter: blur(0);
    transform: scale(1.05);
}

.text-overlay {
    position: sticky;
    color: rgb(10, 10, 10);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Footer Links */
footer a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Hover effect for footer links */
footer a:hover {
    color: #007bff;
    transform: scale(1.1);
}
