@font-face {
    font-family: 'Anton';
    src: url('assets/fonts/Anton-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BDSans-Thin';
    src: url('assets/fonts/BDSans-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #004aad; /* Logo Blue */
    --secondary-color: #ffffff; /* White */
    --accent-color: #ffcc00; /* Logo Yellow */
    --text-color: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --font-main: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.maintenance-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
}

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 5rem;
    max-width: 50%;
    background-color: var(--secondary-color);
    z-index: 2;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 160px;
    width: auto;
    margin-right: 20px;
}

.brand-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: max-content;
}

.brand-name {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 1px;
    color: #ffcc00;
    line-height: 1;
}

.brand-tagline {
    font-family: 'BDSans-Thin', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: justify;
    text-align-last: justify;
    width: 100%;
}

.main-content {
    margin: auto 0;
    max-width: 550px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    border: none;
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 74, 173, 0.15);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 74, 173, 0.1);
    padding-top: 1.5rem;
}

.footer p {
    margin: 0;
    font-size: 0.85rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    transition: color 0.3s ease;
}

.social-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.social-links a:hover::after {
    width: 100%;
}

.image-section {
    flex: 1;
    position: relative;
    max-width: 50%;
    overflow: hidden;
    background-color: #e5e5e5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color) 0%, transparent 15%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: scaleIn 25s infinite alternate linear;
    transform-origin: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    .content-section {
        padding: 2.5rem 3rem;
    }
}

@media (max-width: 992px) {
    .maintenance-container {
        flex-direction: column;
    }
    .content-section {
        max-width: 100%;
        padding: 3rem 2rem;
        min-height: 60vh;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    h1 {
        font-size: 2.8rem;
    }
    .image-section {
        max-width: 100%;
        min-height: 50vh;
    }
    .image-overlay {
        background: linear-gradient(to bottom, var(--secondary-color) 0%, transparent 15%);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .social-links a {
        margin-left: 0;
        margin-right: 1.2rem;
    }
}
