* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'San Francisco';
    src: url('fonts/SF-Pro-Display-Regular.woff2') format('woff2'),
         url('fonts/SF-Pro-Display-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'San Francisco', sans-serif;
    background-color: #f1f1f1;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
    /* background-color: #99d3f0; */
    color: #000;
    border-bottom: 2px solid #ddd;
    border-radius: 10px 10px 0 0;
}


header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

.header-container {
    position: relative;
    text-align: center;
    color: white;
    width: 100%; /* Full width of the viewport */
    height: 50vh; /* Full height of the viewport */
    overflow: hidden;
    padding: 0;
    margin: 0 auto; /* Center the container */
    left: 0;
    right: 0; 
    top: 0;
    
}

.header-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire container */
}

.header-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 0 20px; /* Add padding for better readability on smaller screens */
}

.header-text-overlay h1 {
    font-size: 4vw; /* Responsive font size */
    margin-bottom: 10px;
}

.header-text-overlay p {
    font-size: 2vw; /* Responsive font size */
}

.blog-container {
    max-width: 90%; /* Adjust width to fit viewport */
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.blog-post {
    margin-bottom: 40px;
}

.blog-post h2 {
    font-size: 2.5vw; /* Responsive font size */
    color: #000;
    margin-bottom: 10px;
}

.blog-post img {
    width: 100%;
    height: auto;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.blog-post p {
    font-size: 1.2vw; /* Responsive font size */
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.comment-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.comment {
    margin-bottom: 15px;
}

.comment p {
    font-size: 0.9rem;
    line-height: 1.4;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px 0;
    background-color: #d9f2ff;
    color: #000;
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0px 5px rgba(2, 2, 0, 0.1);
    font-size: 1vw; /* Responsive font size */
}

footer p {
    font-size: 0.9rem;
    font-family: 'San Francisco', sans-serif;
}

.footer-container {
    position: relative;
    text-align: center;
    color: white;
    height: 30vh; /* Adjust height as needed */
    overflow: hidden;
}

.footer-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-text-overlay {
    position: absolute;
    color: black;
    top: 10%; /* Adjusted to fix the text near the top */
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    padding: 0 20px;
}

.footer-text-overlay p {
    font-size: 1.2vw; /* Responsive font size */
}

.quad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.quad-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.img-grid {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}