/* Reset and base styles */
:root {
    --primary-color: #2563eb;
    --text-color: #f3f4f6;  /* Lighter text for better contrast */
    --light-text: #9ca3af;  /* Lighter text for better contrast */
    --background: #1f2937;  /* Dark grey background */
    --footer-bg: #111827;   /* Slightly darker footer */
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 0;
}

.image-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* About Section */
.about-section {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    text-align: center;
}

.section-title {
    color: #f3f4f6;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.about-text {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 2rem;
    color: var(--light-text);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--footer-bg);
    margin-top: 4rem;
    min-height: 80px;
}

.contact-email {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.contact-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: #1a56db;
}

footer p {
    margin: 0.2rem 0 0;
    color: var(--light-text);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .image-container {
        min-height: 60vh;
    }
    
    .about-section {
        margin-top: 1.5rem;
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    footer {
        margin-top: 2rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .image-container {
        min-height: 50vh;
    }
    
    .about-section {
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .about-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-email {
        font-size: 0.85rem;
    }
    
    footer p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
