/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #333333;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

/* Content Section */
.content-section {
    flex: 1;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo */
.logo-container {
    animation: fadeIn 0.8s ease-out forwards;
}

.logo {
    width: auto;
    height: 60px;
}

/* Text Section */
.text-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.headline {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    color: #333333;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #858585;
    font-weight: 400;
    margin: 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coming-soon {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    font-weight: 600;
    margin: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #01317b;
    font-weight: 600;
    margin: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-link:hover {
    transform: translateX(4px);
}

.icon-wrapper {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.icon-wrapper img{
    max-width: 16px;
    height: auto;
}

.contact-link:hover .icon-wrapper {
    transform: scale(1.1);
}

.contact-icon {
    width: 100%;
    height: 100%;
}

.contact-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333333;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.contact-link:hover .contact-text {
    color: #01317b;
}

/* Image Section */
.image-section {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.image-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-wrapper {
    position: relative;
    height: 941px;
    width: 1380px;
    overflow: hidden;
}

.industrial-image {
    position: absolute;
    left: -0.76%;
    top: -0.76%;
    width: 101.38%;
    height: 101.38%;
    object-fit: cover;
    max-width: none;
}

/* Footer */
.footer {
    background-color: #01317b;
    width: 100%;
}

.footer-content {
    padding: 1.5rem 1.5rem;
}

.footer-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles (640px - 1023px) */
@media (min-width: 640px) {
    .content-section {
        padding: 3rem 3rem;
    }

    .text-section {
        gap: 3rem;
    }

    .headline {
        font-size: 36px;
    }

    .description {
        font-size: 18px;
        line-height: 30px;
    }

    .coming-soon {
        font-size: 18px;
        line-height: 30px;
    }

    .contact-label {
        font-size: 18px;
    }

    .contact-links {
        flex-direction: row;
        gap: 2rem;
    }

    .contact-text {
        font-size: 16px;
    }

    .footer-content {
        padding: 1.875rem 3rem;
    }

    .footer-text {
        font-size: 16px;
    }
}

/* Medium Desktop Styles (768px+) */
@media (min-width: 768px) {
    .content-section {
        padding: 4rem 4rem;
        gap: 4rem;
    }

    .headline {
        font-size: 44px;
    }

    .contact-links {
        gap: 3rem;
    }

    .footer-content {
        padding: 1.875rem 4rem;
    }
}

/* Large Desktop Styles (1024px+) */
@media (min-width: 1024px) {
    .main-content {
        flex-direction: row;
    }

    .content-section {
        padding: 5rem 9.375rem;
        gap: 4rem;
    }

    .text-section {
        gap: 3.125rem;
    }

    .contact-section {
        gap: 2.5rem;
    }

    .contact-info-wrapper {
        gap: 1.25rem;
    }

    .contact-links {
        gap: 3.125rem;
    }

    .image-section {
        display: flex;
        width: 720px;
        align-items: center;
        justify-content: flex-end;
        overflow: hidden;
    }

    .footer-content {
        padding: 1.875rem 9.375rem;
    }

    .footer-text {
        text-align: left;
    }
}

/* Extra Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .headline {
        font-size: 44px;
    }
}

/* Mobile-specific adjustments */
@media (max-width: 639px) {
    html {
        text-size-adjust: 100%;
    }

    .logo {
        width: 160px;
        height: auto;
    }

    .contact-links {
        gap: 1.25rem;
    }
}

/* Accessibility - Focus States */
.contact-link:focus {
    outline: 2px solid #08AAE5;
    outline-offset: 4px;
}

.contact-link:focus-visible {
    outline: 2px solid #08AAE5;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .image-section {
        display: none;
    }

    .contact-link {
        color: #333333;
        text-decoration: underline;
    }
}
