@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #667eea;
}

.login-btn {
    padding: 10px 25px;
    background: #667eea;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.slider-container {
    width: 100%;
    height: 100vh;
    background-image: url('Images/back-fab.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-images {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-img {
    width: 90px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.7s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-images .slider-img:nth-child(1),
.slider-images .slider-img:nth-child(5) {
    height: 280px;
}

.slider-images .slider-img:nth-child(2),
.slider-images .slider-img:nth-child(4) {
    height: 340px;
}

.slider-images .slider-img:nth-child(3) {
    height: 400px;
}

h1 {
    font-family: "Jost", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
    transition: 0.7s ease;
    white-space: nowrap;
    letter-spacing: 1px;
    line-height: 1.2;
}

.details {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    transition: 0.7s ease;
    max-width: 80%;
}

.details i {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.details h2 {
    font-family: "Jost", sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.details p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-img.active {
    width: 550px !important;
    height: 550px !important;
    background: rgba(255, 255, 255, 0.15);
}

.slider-img.active h1 {
    display: none;
}

.slider-img.active .details {
    opacity: 1;
}

.slider-img:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

body.login-page {
    width: 100%;
    height: 100vh;
    background-image: url('Images/back-fab.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    color: #007bff;
    font-size: 24px;
}

.login-container input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.6rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.login-container button {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    background: #667eea;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-container button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.extra-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.extra-links a {
    text-decoration: none;
    color: #007bff;
}

.extra-links a:hover {
    text-decoration: underline;
}

