﻿/* Dark Shadow Background with Stronger Blur */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    animation: slideBackground 9s infinite linear;
    z-index: -1;
    filter: blur(8px); /* Increased blur effect for a softer background */
}

/* Background Slideshow */
@keyframes slideBackground {
    0% {
        background-image: url('/img/bglogon1.jpg');
    }

    33% {
        background-image: url('/img/bglogon2.jpg');
    }

    66% {
        background-image: url('/img/bglogon3.jpg');
    }

    100% {
        background-image: url('/img/bglogon1.jpg');
    }
}

/* Main Layout */
.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0 8%;
    color: white;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* School Info */
.school-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* BIGGER Circular School Logo */
.school-logo-wrapper {
    width: 300px; /* Increased size */
    height: 300px; /* Increased size */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); /* Stronger glow */
    margin-bottom: 20px;
    overflow: hidden;
}

    .school-logo-wrapper img {
        width: 95%; /* Adjust image to fit */
        height: auto;
        border-radius: 50%;
    }

/* School Name */
.school-info h2 {
    font-size: 3rem; /* Bigger text */
    font-weight: bold;
    margin-top: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* Address */
.school-info p {
    font-size: 1.5rem;
    margin-top: 8px;
    opacity: 0.85;
}

/* Right Section */
.right-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Login Button */
.btn-login {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff7b00, #ffbf00);
    color: white;
    font-size: 2.5rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.9);
}

    .btn-login:hover {
        background: linear-gradient(45deg, #ff5500, #ffaa00);
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(255, 165, 0, 1);
    }

/* Animated Children */
.children-animation {
    position: sticky;
    bottom: 0px;
    right: 20px;
    width: 250px; /* Increased size */
    height: auto;
    opacity: 0.95;
    animation: float 3s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* GIF Icons Section */
.icons-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.icon {
    width: 80px; /* Increased size */
    height: auto;
    transition: transform 0.3s ease-in-out;
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.8));
}

    .icon:hover {
        transform: scale(1.2);
    }
.random-gif {
    position: absolute;
    width: 80px; /* Adjust size */
    height: auto;
    opacity: 0.9;
    animation: float 3s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}