/* Minimalist Style Sheet */

/* Fonts and Resets */
html, body {
    box-sizing: border-box;
    font-size: 16px; /* Base font size */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    border-bottom: 1px solid #ddd;
    background-color: #eff0e6;
}

.site-logo {
    height: 40px; /* Adjusted logo size for mobile */
}

.site-nav a {
    text-decoration: none;
    color: #333;
    margin-left: 2rem;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 4rem 2%;
    margin: 20px; /* Removed negative margins */
    padding-top: 80px;
    padding-bottom: 0px;
}

#hero h1 {
    font-weight: 400;
    font-size: 1.5rem;
}

#hero p {
    color: #555;
    margin-top: 1rem;
}

.cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
}

/* Solutions Section */
#solutions {
    padding: 2rem 5%; /* Adjusted for mobile responsiveness */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-left: 200px;
    padding-right: 200px;
}

#solutions h2 {
    font-weight: 400;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    align-self: center;
}

#solutions p {
    font-size: 0.9rem;
    color: #555;
    padding: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #ddd;
    background-color: #ffffff;
}


/* General Layout */
.container {
    display: flex;
    flex-direction: row; /* Keep row for desktop */
    min-height: 100vh;
}

/* Header */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #eff0e6;
    padding: 1rem 2%;
    border-bottom: 1px solid #ddd;
}

/* Section for Social Media Links */
section {
    text-align: center;
    margin: 2rem 0;
}

section h2 {
    font-weight: 400;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif; /* Ensure titles use 'Open Sans' */
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between social media buttons */
}

.social-media a {
    display: inline-block;
    width: 50px; /* Width of the social media icons */
    height: 50px; /* Height of the social media icons */
    border: none;
    background-color: transparent;
    outline: none;
}

.social-media img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #ddd;
    background-color: #eff0e6;
    font-family: 'Open Sans', sans-serif; /* Confirm footer also uses 'Open Sans' */
}

html, body {
    height: 100%; /* Full height of the viewport */
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    min-height: 100vh; /* Minimum height of the viewport */
}

.site-content {
    flex: 1; /* Flex grow to occupy available space */
}


