/* Importing fonts */
@import url('https://fonts.googleapis.com/css2?family=Vina+Sans&display=swap');

/* Global Styles */
body {
    font-family: Roboto, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
h1, h2 {
  font-family: "Vina Sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
a {
    color: #4b657d;
    text-decoration: none;
    font-weight: 700;
}
.nav-links a span {
    display: none;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    margin-left: 12px;
    font-size: 16px;
    max-width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    text-transform: initial;
    color: #333;
}

a:hover {
    color: #2b354d;
}
.nav-links a:hover span {
    display: block;
}

header {
    background-color: #ffffff;
    color: black;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    height: 30px;
    padding: 50px;
}

.nav-links {
    display: flex;
    color: black;
    gap: 20px;
    font-size: 30px;
    font-family: "Vina Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    translate: 0px -2.5px;
}
.nav-links a {
  font-weight: 400;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 250px;
    box-sizing: border-box;
    padding: 20px;
}

ul {
    margin: 0;
    margin-left: 15px;
    padding: 0;
}
ul li::marker {
  display: block;
  color: #4b657d;
  border-radius: 100%;
}

footer {
    margin-top: auto;/*Much easier*/
    padding: 20px;
    text-align: center;
    background-color: #4b657d;
    color: white;
    justify-content: space-around;
    align-items: center;
}

/* Specific Styles */

header img {
    height: 80%;
}

.content h1, .content h2 {
    color: #4b657d;
    font-size: 40px;
    line-height: 0.8;
}

.content ul li {
    margin-bottom: 10px;
}

footer h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

footer small {
    display: block;
    margin-top: 20px;
    font-size: 14px;
}
/* Button group*/
.buttongroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.buttongroup button {
  background-color: #4b657d;
  color: white;
  padding: 10px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-family: "Vina Sans", sans-serif;
  font-size: 34px;
  line-height: 0.8;
  font-weight: normal;
  text-transform: uppercase;
}
:is(.buttongroup button, .link-button):hover {
  background-color: #2b354d;
}
#squareDiv {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: fit-content;
  float: right;
}
#squareDiv > img {
  height: 85.333333px;
}
.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.carousel-item img {
  width: 75%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

.caption {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.link-button {
  padding: 10px 20px;
  background-color: #4b657d;
  color: white!important;
  text-decoration: none;
}

