@font-face {
    font-family: 'reblGasTitle';
    src: url(../fonts/Montserrat-ExtraBold.ttf);
  }
  @font-face {
    font-family: 'reblGasNavLinks';
    src: url(../fonts/Montserrat-SemiBold.ttf);
  }
  @font-face {
    font-family: 'reblGasInfo';
    src: url(../fonts/Roboto_Condensed-Bold.ttf);
  }
  body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
  }
  #top {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: red;
  }
  #title {
    font-family: 'reblGasTitle', sans-serif;
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  nav {
    display: flex;
    align-items: center;
  }
  nav a {
    margin: 0 15px;
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-family: 'reblGasNavLinks', sans-serif;
  }
  nav a:hover {
    color: white;
  }
  #section-1 {
    padding-top: 40px;
    padding-bottom: 30px 0px;
    display: flex;
    justify-content: center;
  }
  #section-2 {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 30px 0px;
        display: flex;
        justify-content: center;
  }
  #info-container {
    display: flex;
    align-items: stretch; /* Stretch both to match height */
    gap: 20px;
    max-width: 1000px;
    width: 100%;
  }
  #info {
    flex: 1;
    font-family: 'reblGasInfo', sans-serif;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
  .tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid black;
    margin-bottom: 20px;
  }
  .tabs a {
    margin-right: 20px;
    padding-bottom: 8px;
    text-decoration: none;
    color: #3b3b3b;
    font-weight: bold;
    border-bottom: 3px solid transparent;
  }
  .tabs a:hover {
    color: black;
    border-bottom: 3px solid;
    transition: 0.3s;
  }
  #logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #logo img {
    height: 100%; /* <<< Now matches info section height */
    width: auto;
    max-height: 100%; /* Keeps it fitting */
    border-radius: 8px;
  }
  .divider {
    width: calc(1000px); /* Info-container (1000px) + 50px left margin + 20px gap */
    height: 2px;
    background-color: #141414;
    margin: 20px auto; /* Center the divider */
  }
  .spacer {
    height: 400px;
  }
  #footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #aaa;
    margin-top: 40px;
  }
  #burger {
    display: none;
  }
@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    #top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    #nav-links {
        display: flex;
        flex-direction: column;
        background-color: red;
        width: 100%;
        position: absolute;
        top: 60px; /* below top bar */
        left: 0;
    }
    #nav-links.show {
        display: flex;
    }

    #nav-links a {
        font-size: 18px;
        margin: 10px 0;
    }

    #burger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: white;
    }

    #section-1 {
        padding-top: 20px;
        margin: 0 10px;
    }

    #section-2 {
        padding-top: 20px;
        margin: 0 10px;
    }

    #info-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #logo img {
        max-width: 80%;
        max-height: 250px;
    }

    #title {
        font-size: 20px;
    }

    .tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tabs a {
        margin: 5px;
        font-size: 16px;
    }

    .divider {
        width: 90%;
    }

    .spacer {
        height: 100px;
    }
}
@media (max-width: 400px) {
    nav a {
        font-size: 16px;
    }

    #title {
        font-size: 18px;
    }
}
