:root {
    --primary-color: #153B50;
    --secondary-color: #FFB800;
    --text-color: #ffffff;
    --background-color: #E6F4F1;
    --accent-color: #4A90E2;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #E6F4F1 0%, #B8E2F2 50%, #E6F4F1 100%);
    color: var(--text-color);
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.hero-header {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 59, 80, 0.7), rgba(21, 59, 80, 0.4));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.logo h1 {
    color: var(--text-color);
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.message {
    margin-bottom: 3rem;
}

.message h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.construction-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin: 2rem 0;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

footer {
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .message h2 {
        font-size: 1.5rem;
    }

    .message p {
        font-size: 1rem;
    }

    .construction-icon {
        font-size: 3rem;
    }

    .coming-soon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .social-icon {
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
}
