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

body {
    font-family: 'Nunito', sans-serif;
    background: #02327c;
    min-height: 100vh;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    display: flex;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    gap: 60px;
    align-items: center;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 20px; */
    /* margin-top: -80px; */
    margin-left: 40px;
}

.logo-placeholder {
    position: relative;
    width: 280px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px dashed rgba(255, 255, 255, 0.3); */
    /* border-radius: 12px; */
    /* background: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(10px); */
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    /* border-color: rgba(255, 255, 255, 0.5); */
    /* background: rgba(255, 255, 255, 0.1); */
    transform: translateY(-2px);
}

.logo-placeholder img{
    width: 280px;
    height: 100%;
}

/* .logo-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} */

.tagline{
    margin: 0 auto;
}

.tagline h2 {
    font-size: 1.8rem;
    font-weight: 800;
    /* color: #e2e8f0; */
    /* margin-top: 10px; */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    /* color: #60d9fa; */
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.description p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e2e8f0;
    line-height: inherit;
    text-align: justify;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(96, 217, 250, 0.5);
}

.contact-item .icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

.contact-item span:not(.icon) {
    color: #e2e8f0;
}

/* Footer */
.footer-text {
    margin-top: 40px;
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.footer-text p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #60d9fa;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-text a{
    color: unset;
    text-decoration: none;
}

.footer-text a:hover{
    color: unset;
    text-decoration: none;
}

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

.logo-section,
.content-section > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-section > *:nth-child(2) {
    animation-delay: 0.2s;
}

.content-section > *:nth-child(3) {
    animation-delay: 0.4s;
}

.content-section > *:nth-child(4) {
    animation-delay: 0.6s;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
        text-align: center;
    }
    
    .logo-section {
        align-items: center;
        margin-top: 40px;
        margin-left: 0px;
    }
    
    .header-text h1 {
        font-size: 2.2rem;
    }
    
    .description p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        gap: 30px;
    }
    
    .logo-placeholder {
        width: 240px;
        height: 160px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .tagline h2 {
        font-size: 1.5rem;
    }
    
    .header-text h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .description p {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
        gap: 25px;
    }
    
    .logo-placeholder {
        width: 200px;
        height: 140px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .tagline h2 {
        font-size: 1.3rem;
    }
    
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .description p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .footer-text p {
        font-size: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text h1,
    .tagline h2,
    .header-text h1 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: #02327c;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
