/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Lora', serif;
    color: #f2f2e6;
    background-image: url('image.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* --- Layout Sections --- */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
}

.details-section {
    padding: 2rem 4rem;
}

/* --- Header --- */
.site-header {
    pointer-events: auto;
}

.site-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    margin-left: -0.3rem;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.header-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    opacity: 0.9;
}
.logo {
    width: 6.0rem;
    height: auto;
    display: block;
}

/* --- Company Statement --- */
.company-statement {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: justify;
    max-width: 450px;
    
    position: absolute;
    left: 4rem;
    top: 40%; /* UPDATED: Changed from 50% to move the block higher */
    transform: translateY(-50%);

    pointer-events: auto;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* --- Divider & Footer --- */
.divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100%;
    margin-bottom: 2rem;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 5rem;
}

.contact-info p {
    font-weight: 400;
    font-size: 0.9rem;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.7);
}
.contact-info p strong {
    font-weight: 700;
}
.contact-info a {
    color: #f2f2e6;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.copyright-info {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero-section, .details-section {
        padding: 2rem;
    }

    .site-header h1 { 
        font-size: 1.5rem; 
    }
    .logo { 
        width: 4.2rem; 
    }

    .company-statement {
        position: static;
        transform: none;
        max-width: 100%;
        margin-top: 25vh;
        font-size: 1.2rem;
    }
    
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}