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

html {
    font-family: Merriweather, serif;
}
body {

}

button {
    border-radius: 15px;
    background: transparent;
    padding: 10px;
    margin: 10px;
}

button:hover {
    cursor: pointer;
    background-color: #03071E;
    color: white;
    transform: scale(1.05);
}

.cta {
    background: teal;
    color: white;
}

.cta:hover {
    background-color: #E85D04;
    transform: scale(1.25);
}

.hero {
    padding: 1vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1em;
}
.hero h1 {
    font-size: 5vw;
    text-wrap: nowrap;
}
.menu-toggle {
    display: none; /* Hide by default */
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;

}

.menu-toggle .line {
  background-color: white; /* Color of the burger lines */
  height: 4px; /* Height of each line */
  width: 100%; /* Full width of the burger */
  border-radius: 2px; /* Optional: Make the lines rounded */
  z-index: 1000;
}

.menu-toggle:hover .line {
  background-color: white; /* Change color on hover */
}
/* Show the button only on mobile screens */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
        flex-direction: column;
        align-content: center;
        justify-content: space-between;
        width: 40px;
        height: 30px;
        margin-left: auto;
        margin-right: 3vw;
        margin-top: 1vw;
        margin-bottom: 1vw;
    }
}

header {
    text-align: center;
    background-color: #03071E;
}

.logo {
    width: 10vw;
}

nav {
    display: flex;
    color: white;
    gap: 1em;
    justify-content: space-around;
    align-items: center;
}

a {
    font-size: 2vw;
    text-decoration: none;
    color: white;
}

a:hover {
    cursor: pointer;
    border-bottom: 2px solid #FFBA08;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1em;
    text-align: center;
    padding: 5vw 1vw;
}

h1 {
    font-size: 7vw;
}

h2 {
    font-size: 5vw;
}

h3 {
    font-size: clamp(1rem, 3vw, 1.5rem); /* Adjust the middle value as needed */
}

h4 {
    font-size: clamp(.75rem, 2vw, 1.25rem);
    padding: 1em;
}
span {
    color: #D00000;
}

main img {
    width: 60vw;
}

section {
    padding: 5vh 1vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    gap: 1em;
}

.call-to-adventure {
    background: #E85D04;
    color: white;
}

.five-cs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    gap: 1em;
    width: 100%;
    flex-wrap: wrap;
}
.five-cs-item {
    flex: 1;
    overflow: hidden;
    min-width: 250px; /* Adjust as needed */
    max-width: 30%; /* Adjust based on your design */
}

.five-cs-item h3 {
    overflow-wrap: break-word; /* Break long words */
    white-space: normal; /* Allow normal text wrapping */
}

.five-cs-item img {
    align-self: flex-end;
    width: 15vw;
}
.headshot {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
}
.headshot img {
    width: 25vw;
    border-radius: 50% 50% 50% 50%;
}

.areas-of-specialization {

}

.skills-container {
    display: flex;
    flex-direction: row;
}

.skills-container-item {
    flex-wrap: wrap;
}
.skills-container-item img {
    width: 20vw;
}

.success-stories {
    background: #FFBA08;
}

.success-stories-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    align-items: baseline;
    gap: 1em;

}
.success-stories-container img {
    width: 10vw;
    border-radius: 50% 50% 50% 50%;
}

.success-stories-container button {
    align-self: center;
}

.success-stories-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 1em;
}

.contribute-container p {
    font-size: 3vw;
}

footer {
    background: #03071E;
    color: white;
    padding: 1vw;
}

footer img {
    width: 10vw;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1em;
    padding: 1vw;
    flex-wrap: wrap;
}

footer a {
    color: white; /* Text and icon color */
    text-decoration: none;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: transform 0.3s ease;
}

footer a:hover {
    color: #DC2F02;
    transform: scale(1.05);
    border-bottom: 0 transparent;
}

footer i {
    font-size: 1.5em;
}

footer p {
    font-size: 1vw;
}

.copyright {
    border-top: 1px solid;
    padding: 1vw;
}

@media screen and (max-width: 768px) {
    nav > a, nav > img, nav > .cta {
        display: none; /* Hides only the navigation items */
    }
}




