/* Adding background color */
body {
    background-color: white;
    font-family: "Fira Sans", sans-serif;
}


/* Styling the logo */
#navLogo {
    height: 100px;
    width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    background-color: white;
}

/* Making the spoon logo fit */
#spoonLogo {
    height: 60px;
    width: 45px;
}

/* Styling hero banner */
.hero-banner {
    width: 100%;
    height: 50vh; /* half viewport height */
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures image covers area without distortion */
    object-position: center; /* center the image */
}

/* Styling the content below the hero image */

div {
    display: flex;               /* makes children align horizontally */
    align-items: flex-start;     /* aligns top edges */
    gap: 20px;                    /* space between text and image */
    padding: 20px;                /* optional spacing around section */
}

h1 {
    margin: 0 0 10px 0; /* keeps heading close to paragraph */
}

.filler-text-1 {
    max-width: 600px; /* text stays in a neat column */
    line-height: 1.6;
    margin: 0;
}

.side-image-1 {
    max-width: 300px; /* controls image size */
    height: auto;
}

.filler-text-2 {
    max-width: 800 px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
    
}

/* Styling the footer: */

/* Main footer styling: */
footer{
    background-color: grey;
    color: white;
    padding: 40px 20px;
    text-align: left;
}

/* Styling the columns in the footer div: */
.footer-container {
    display: flex; /* puts the <div>s side-by-side */
    justify-content: space-around;
   flex-wrap: wrap; /* makes it responsive for small screens */
   gap: 20px;  /* spacing between columns */
   margin-bottom: 20px; 
}

/* Each list column */
footer ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0; /* removes left indentation*/
    margin: 0;
}

footer li {
  margin-bottom: 8px;       /* spacing between list items */
}

/* Styling footer heading: */
footer h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

/* Bottom section: */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #555; /*subtle top border */
    padding-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.github-link {
  color: white;             /* Make sure the icon isn’t blending into the background */
  text-decoration: none;
  font-size: 30px;
}

.github-link:hover {
  color: #c0c0c0;
}
