/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Container and layout */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Typography */
.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.message h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #34495e;
}

.message p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #7f8c8d;
}

/* Image container */
.image-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.construction-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.construction-image:hover {
    transform: scale(1.02);
}

/* Contact info */
.contact-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(52, 73, 94, 0.1);
    border-radius: 10px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Design */

/* Large screens (1200px and up) - Desktop */
@media (min-width: 1200px) {
    .title {
        font-size: 4rem;
    }
    
    .content {
        padding: 60px;
    }
    
    .image-container {
        margin: 50px 0;
    }
}

/* Medium screens (768px to 1199px) - Tablets */
@media (min-width: 768px) and (max-width: 1199px) {
    .title {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 40px 30px;
    }
    
    .message h2 {
        font-size: 1.8rem;
    }
    
    .message p {
        font-size: 1.1rem;
    }
}

/* Small screens (up to 767px) - Mobile */
@media (max-width: 767px) {
    .container {
        padding: 15px;
    }
    
    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .image-container {
        margin: 30px 0;
        border-radius: 10px;
    }
    
    .contact-info {
        padding: 15px;
        margin-top: 20px;
    }
}

/* Extra small screens (up to 480px) */
@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    .message h2 {
        font-size: 1.3rem;
    }
    
    .message p {
        font-size: 0.95rem;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeIn 1s ease-out;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .construction-image {
        transition: none;
    }
    
    .content {
        animation: none;
    }
}

/* Focus styles for accessibility */
a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}