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

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}


/* Example Raleway font class (customize or remove as needed) */
.raleway-regular {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container for consistent spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

/* Main Content Styles */
.main {
    flex: 1;
    padding: 1rem 0 3rem 0;
}

.content {
    text-align: center;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
    font-weight: 400;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    max-width: 600px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #878c8f;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background-color: #71a5be;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link:focus {
    outline: 2px solid #0077b5;
    outline-offset: 2px;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .header {
        padding: 3rem 0;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .main {
        padding: 2rem 0 4rem 0;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .copyright {
        text-align: left;
        margin-bottom: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header {
        padding: 4rem 0;
    }
    
    .logo {
        max-height: 180px;
    }
    
    .main {
        padding: 3rem 0 5rem 0;
    }
    
    .intro-text {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .footer {
        padding: 2.5rem 0;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .container {
        padding: 0 3rem;
    }
    
    .header {
        padding: 5rem 0;
    }
    
    .logo {
        max-height: 200px;
    }
    
    .intro-text {
        font-size: 1.2rem;
        line-height: 1.2;
    }
}

/* Accessibility and Print Styles */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .footer {
        background-color: transparent !important;
        border-top: 1px solid #000 !important;
    }
    
    .linkedin-link {
        background-color: #000 !important;
        color: #fff !important;
    }
    
    .social-links::after {
        content: " (LinkedIn)";
        font-size: 0.75rem;
        color: #000;
    }
}

/* Focus styles for better accessibility */
*:focus {
    outline: 2px solid #0077b5;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer {
        background-color: #f0f0f0;
        border-top: 2px solid #000;
    }
    
    .copyright {
        color: #000;
    }
}


