:root {
    --primary-color: #1a2b5e; /* Dark navy blue from Suracor.com */
    --secondary-color: #3a59c7; /* Accent blue */
    --text-color: #333333;
    --light-color: #f8f9fa;
    --button-color: #3a59c7; /* Button blue */
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 950px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 3.5rem 3rem;
    text-align: center;
    overflow: hidden;
    position: relative;
    animation: fadeIn 1s ease;
}

.logo-container {
    margin-bottom: 2.5rem;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.logo {
    max-width: 150px;
    height: auto;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: scale(1.05);
}

.content {
    position: relative;
    margin-bottom: 2.5rem;
}

.language-section {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
    pointer-events: none;
    transform: translateY(0);
}

.language-section.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.title {
    color: var(--primary-color);
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    white-space: nowrap; /* Prevent text wrapping */
    word-break: break-word; /* Ensure text remains readable when scaled */
}

.tagline {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.link-container {
    margin-top: 3rem;
}

.main-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    background-color: var(--button-color);
    border: none;
    border-radius: 6px;
    transition: all var(--transition-speed);
    font-weight: 500;
}

.main-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrow-icon {
    margin-left: 8px;
    fill: currentColor;
    transition: transform var(--transition-speed);
}

.main-link:hover .arrow-icon {
    transform: translateX(4px);
}

.language-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.lang-btn:hover {
    background-color: #f5f5f5;
}

.lang-btn.active {
    background-color: var(--button-color);
    color: white;
    border-color: var(--button-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extra large screens */
@media (min-width: 1440px) {
    .container {
        padding: 4rem;
        max-width: 1100px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .container {
        padding: 2.5rem 2rem;
        max-width: 95%;
    }
    
    .title {
        font-size: 1.8rem;
        white-space: normal; /* Allow wrapping on smaller screens */
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .main-link {
        font-size: 1rem;
    }
    
    .content {
        /* Remove min-height */
    }
}

/* Small screens (large phones) */
@media (max-width: 576px) {
    .container {
        padding: 2.2rem 1.8rem;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .link-container {
        margin-top: 2rem;
    }
    
    .language-toggle {
        margin-top: 2rem;
        gap: 10px;
    }
    
    .content {
        /* Remove min-height */
    }
}

/* Extra small screens (small phones) */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .content {
        /* Remove min-height */
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .language-toggle {
        flex-direction: column;
        gap: 8px;
    }
    
    .lang-btn {
        width: 100%;
    }
    
    .main-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .content {
        /* Remove min-height */
    }
}

/* Short viewports */
@media (max-height: 600px) {
    .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .link-container {
        margin-top: 1.5rem;
    }
    
    .language-toggle {
        margin-top: 1.5rem;
    }
} 