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

.header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

header {
  display: flex;

  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.logo-desktop {
  width: 200px;
  height: 80px;
  position: relative;
  padding-left: 20px;
  margin-right: auto;
}

.logo-desktop img {
  width: 100%;
  height: 100%;
  background-color: transparent;
  mix-blend-mode: multiply;
}

.logo-mobile {
  display: none; /* Hide the mobile logo by default */
}

/*.navigation {
  flex-grow: 1;
  text-align: right;
  margin-top: 20px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: inline-block;
  margin-right: 20px;
}

.navigation li:last-child {
  margin-right: 0;
}

.navigation li a {
  display: block;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 50px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background-color: #f3e8d7;
  color: #6e5632;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.navigation li a:hover {
  background-color: #d9c1a8;
}

.navigation li a:active {
  background-color: #bda67b;
}
*/

.navigation {
  flex-grow: 1;
  text-align: right;
  margin-top: 20px;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  display: inline-block;
  margin-right: 20px;
}

.navigation li:last-child {
  margin-right: 0;
}

.navigation li a {
  display: block;
  padding: 8px 16px;
  margin: 0 4px;
  color: #000; /* Black text color */
  text-decoration: none;
  transition: color 0.2s ease; /* Transition effect for hover */
}

.navigation li a:hover {
  color: #ff0000b7; /* Red text color on hover */
}

.navigation li a:active {
  color: #770101; /* Darker red color on active, you can modify this to suit your needs */
}
body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  width: 100%;
  line-height: 1.4;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/EcoCafePicLanding.jpg) no-repeat center/cover;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 70vh;
}

h1.title {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-align: center;
}

p.subtitle {
  color: #fff;
  letter-spacing: 1px;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}

.hourstitle {
  color: #fff;
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hours {
  color: #fff;
  letter-spacing: 1px;
  font-style: bold;
  margin-bottom: 1rem;
  text-align: center;
  list-style: none;
}

footer {
  background-color: #e4e2e2;
  position: relative;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
  margin-top: auto;
}

.social-media,
.terms-container,
.contact-info {
  flex-basis: 33.333%;
  padding: 1rem;
}

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

.social-media a {
  display: block;
  margin-right: 1.5rem; /* adjust as needed */
  font-size: 2.5rem;
  color: #6e5632; /* change the color to brown */
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-media a:hover {
  color: #3c3c3c; /* change the color on hover, you can use your preferred color */
}

.terms-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  text-align: center;
  font-weight: bold;
}

/* For screens smaller than 768px (e.g. smartphones) */
@media (max-width: 767px) {
  .header-container {
    flex-direction: column;
  }

  header {
    height: auto;
    padding: 10px 0;
  }

  .container {
    margin-bottom: 2rem; /* Add some bottom margin to create space */
  }

  .logo {
    width: 100px;
    height: 100px;
    position: static;
    margin-bottom: 10px;
  }

  .navigation {
    display: block; /* hide the navigation menu by default */
    margin-top: 10px;
    text-align: center;
  }

  .navigation li {
    display: block;
    margin: 10px, auto;
  }

  .navigation li a {
    display: inline-block;
  }

  .toggle-nav {
    display: block; /* show the toggle button */
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #6e5632;
    z-index: 1;
  }

  .toggle-nav:focus {
    outline: none; /* remove the focus outline */
  }

  .menu {
    display: none; /* hide the menu by default */
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .menu li {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .menu li:last-child {
    margin-bottom: 0;
  }

  .menu a {
    display: block;
    padding: 10px;
    border-radius: 0;
    background-color: transparent;
    color: #6e5632;
    text-align: center;
  }

  .menu a:hover {
    background-color: #f3e8d7;
  }

  /* show the menu when the toggle button is clicked */
  .toggle-nav:checked ~ .menu {
    display: block;
  }

  .hours {
    text-align: center;
  }

  footer {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #e4e2e2;
    padding: 1rem 2rem;
    margin-top: auto;
    text-align: left;
  }

  .social-media {
    margin-bottom: 1rem;
  }

  .contact-info {
    margin-top: 1rem;
    text-align: center;
  }

  .terms {
    margin-top: 2rem;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

/* For my Samsung Galaxy */

@media only screen and (max-width: 1080px) {
  footer {
    flex-direction: column;
  }

  .social-media,
  .terms-container,
  .contact-info {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }

  .social-media,
  .terms-container,
  .contact-info {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
}
/* For Every Smart Phone of all sizes */
@media (max-width: 480px) {
  .logo-desktop {
    display: none; /* Hide the desktop logo on small screens */
  }
  .header-container {
    flex-direction: column;
  }

  header {
    height: auto;
    padding: 10px 0;
  }

  .container {
    margin-bottom: 2rem; /* Add some bottom margin to create space */
  }

  .logo-mobile {
    display: block; /* Show the mobile logo on small screens */
    width: 100px;
    height: 100px;
    position: static;
    margin-bottom: 10px;
  }

  .navigation {
    display: block; /* hide the navigation menu by default */
    margin-top: 10px;
    text-align: center;
  }

  .navigation li {
    display: block;
    margin: 10px auto;
  }

  .navigation li a {
    display: inline-block;
  }

  .toggle-nav {
    display: block; /* show the toggle button */
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #6e5632;
    z-index: 1;
  }

  .toggle-nav:focus {
    outline: none; /* remove the focus outline */
  }

  .menu {
    display: none; /* hide the menu by default */
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .menu li {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .menu li:last-child {
    margin-bottom: 0;
  }

  .menu a {
    display: block;
    padding: 10px;
    border-radius: 0;
    background-color: transparent;
    color: #6e5632;
    text-align: center;
  }

  .menu a:hover {
    background-color: #f3e8d7;
  }

  /* show the menu when the toggle button is clicked */
  .toggle-nav:checked ~ .menu {
    display: block;
  }

  .hours {
    text-align: center;
  }

  footer {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #e4e2e2;
    padding: 1rem 2rem;
    margin-top: auto;
    text-align: left;
  }

  .social-media {
    margin-bottom: 1rem;
  }

  .contact-info {
    margin-top: 1rem;
    text-align: center;
  }

  .terms {
    margin-top: 2rem;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}

/* For screens between 768px and 1024px (e.g. tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
  .logo {
    width: 150px;
    height: auto;
  }

  h1.title {
    font-size: 3rem;
  }

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

  .hourstitle {
    font-size: 1.5rem;
  }

  .hours {
    font-size: 1rem;
  }

  .navigation li {
    margin-right: 15px;
  }

  .navigation li a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .container {
    padding: 1.5rem;
  }

  .social-media a {
    font-size: 2rem;
    margin-right: 1rem;
  }

  footer {
    padding: 1rem 1rem;
  }

  .social-media,
  .terms-container,
  .contact-info {
    padding: 0.5rem;
  }
}

/* For screens between 1024px and 1440px (e.g. smaller desktop monitors) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .logo {
    width: 180px;
    height: auto;
  }

  h1.title {
    font-size: 4.5rem;
  }

  p.subtitle {
    font-size: 1.2rem;
  }

  .hourstitle {
    font-size: 2.2rem;
  }

  .hours {
    font-size: 1.2rem;
  }

  .navigation li {
    margin-right: 25px;
  }

  .navigation li a {
    padding: 10px 18px;
    font-size: 1rem;
  }

  .container {
    padding: 2.5rem;
  }

  .social-media a {
    font-size: 2.5rem;
    margin-right: 1.5rem;
  }

  footer {
    padding: 1.5rem 2rem;
  }

  .social-media,
  .terms-container,
  .contact-info {
    padding: 1rem;
  }
}

/* For screens larger than 1440px (e.g. larger desktop monitors) */
@media (min-width: 1440px) {
  .logo {
    width: 220px;
    height: auto;
  }

  h1.title {
    font-size: 5rem;
  }

  p.subtitle {
    font-size: 1.4rem;
  }

  .hourstitle {
    font-size: 2.5rem;
  }

  .hours {
    font-size: 1.4rem;
  }

  .navigation li {
    margin-right: 30px;
  }

  .navigation li a {
    padding: 12px 22px;
    font-size: 1.1rem;
  }

  .container {
    padding: 3rem;
  }

  .social-media a {
    font-size: 3rem;
    margin-right: 1.8rem;
  }

  footer {
    padding: 2rem 2.5rem;
  }

  .social-media,
  .terms-container,
  .contact-info {
    padding: 1.5rem;
  }
}
