* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1db3e0;
    --light-color: #f4f4f6;
    --dark-color: #111;
}

body {
    font-family: 'Libertinus-Serif';
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
}

a {
    text-decoration: none;
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

ul {
    list-style: none;
}

img {
    width:  auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding-top: 10px;
}

.map-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #35A89A;
}

.map-container iframe{
    margin-bottom: 50px;
    width: 80%;
}

p {
    margin-bottom: 1em; 
}

/* Navbar */
.navbar {
    background: #35A89A;
    padding: 5px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../images/background.png');
    background-color: #fff;
    border: 2px solid #111;
}

.navbar .main-menu ul {
    display: flex;
}

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600; /* Semibold font */
    transition: 0.5s; /* Time it takes for font to change color when hovered over */
}

.navbar ul li a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    margin-bottom: 50px;
}

.hero .container {
    /*background: url(../images/hero-bg.png) no-repeat;
    background-size: contain;
    background-position: center bottom;
    height: 550px;*/
    text-align: center;
}

.hero .adjacent-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 20px;
    margin: 20px;
}

.hero .adjacent-container :first-child {
    flex-shrink: 0;
}

/* Utility Classes */
.container  {
    max-width: 1100px;
    margin: 0 auto; /* 0 top and bottom, auto left/right */
    padding: 0 15px;
}

.container-sm  {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.styled-hr {
    max-width: 800px;
    margin: auto;
}

/* Text Classes */

.text-xxxl {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px; 
}

.text-xxl {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px; 
}

.text-xl {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px; 
}

.text-lg {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px; 
}

.text-md {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px; 
}

.text-sm {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px; 
}

.text-center {
    text-align: center;
}