/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo section */
.logo-section {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main content */
.main-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
    color: white;
}

.school-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Construction banner */
.construction-banner {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.construction-banner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.construction-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* School info */
.school-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.address-section,
.contact-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #ffffff;
    backdrop-filter: blur(10px);
}

.address-section h3,
.contact-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address p,
.contact p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.contact p strong {
    color: #ffffff;
}

/* Coming soon */
.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .school-name {
        font-size: 2rem;
    }
    
    .school-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .construction-banner h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .school-name {
        font-size: 1.5rem;
    }
    
    .construction-banner h2 {
        font-size: 1.3rem;
    }
    
    .main-content {
        padding: 1.5rem 1rem;
    }
    
    .address-section,
    .contact-section {
        padding: 1rem;
    }
}

/* Animation for construction banner */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.construction-banner {
    animation: pulse 2s infinite;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}
