
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #bc5a0f 0%, #f7cd00 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    max-width: 80%;
    width: 80vw;
    /* height: 20%; */
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.8;
    border: solid;
    border-color: solid white;
    border-width: 1px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.construction-message {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.construction-message h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: white;
}

.construction-message p {
    font-size: 1.1em;
    line-height: 1.6;
}

.construction-message ul {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 1.1em;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    width: 15%;
    border-radius: 4px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.footer {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .logo {
        width: 100px;
        height: 100px;
        font-size: 30px;
    }
}

.team-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.team-info h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: white;
}

.teamList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    height:100%;
}

.teamItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.teamImage {
    width: 24vh;
    /* height: 30vh; */
    border-radius: 15px;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.largeImage {
    border-radius: 15px;
    border-left: 4px solid white;
    border-bottom: 3px solid white;
}

.teamEmail {
    text-decoration: none;
    color: #bc5a0f;
}