﻿
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}


.dl-horizontal dt {
    white-space: normal;
}


input,
select,
textarea {
    max-width: 280px;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: #e6f2ff; 
}

#interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, #e6f2ff 0%, #d0e2f5 100%);
    transition: background 0.2s ease;
}


.school-tile {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 20px 30px;
    min-width: 280px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .school-tile::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
        transform: rotate(25deg);
        transition: all 0.4s ease;
        opacity: 0;
        pointer-events: none;
    }

    .school-tile:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        border-color: rgba(0, 123, 255, 0.3);
        color: #0056b3;
    }

        .school-tile:hover::before {
            top: 0%;
            left: 0%;
            opacity: 1;
        }


.info-box {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}
    
.expand-tile {
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1000;
    transition: transform 1.5s ease-in-out, background-color 1.5s ease, color 0.5s ease;
    border-radius: 20px;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    color: inherit;
}

    .expand-tile.expand-tile-active {
        transform: translate(-50%, -50%) scale(25);
        border-radius: 0;
        background-color: #ffffff; 
        color: transparent;
    }

    .expand-tile::before {
        display: none;
    }

html, body {
    overflow: hidden;
}
#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 9999;
}
body.page-fadein {
    opacity: 0;
    transition: opacity 1s ease;
}

    body.page-fadein.page-loaded {
        opacity: 1;
    }