
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.hero {
    width: 80%;
    height: 40vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.logo {
    height: 4vh;
    width: auto;
}

.column-image {
    width: 40vh;
    height: auto;
    object-fit: cover;
}

.glowswitch {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    background: linear-gradient(270deg, #FFC20F, #FFD932);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.column-box {
  display: flex;
  padding-left: 15%;
  padding-right: 15%;
}

.callout-box {
  display: block;
  padding: 2% 4%;
  margin-left: 20%;
  margin-right: 20%;
  border: 2px solid lightgray;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: left;
}

.column {
  flex: 50%;
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
}

.icon {
    width: 32px;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
    margin-left: -5px;
}

.icon-emoji {
    width: 16px;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
    margin-left: -5px;
}

.navbar {
  display: flex;
  background: white;
  padding: 10px 20px;
  margin: 0 auto;
  width: 100%;
  height: 6vh;
  justify-content: space-between;
  vertical-align: middle;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.navbar-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2vh;
}

.navbar-items p {
    margin: 0;
}

.button {
    background-color: black;
    color: white;
    padding: 6px 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
}

 a {
    text-decoration: none;
}


.callout-box p {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.collapsibles-container {
  display: flex;
  text-align: center;
  padding-left: 15%;
  padding-right: 15%;

}

.footer {
    background: linear-gradient(270deg, #FFC20F, #FFD932);
    width: 80%;
    height: 12vh;
    padding: 3vh 5vh 2vh 5vh;
    margin: 0 auto;
    margin-top: 5vh;
    border-radius: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 6vh;
    width: auto;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 2vh;
}

.social-icon {
    font-size: 24px;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.copyright {
    text-align: left;
    margin-top: 2vh;
}

.copyright p {
    color: white;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

h1 {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 40px;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

details {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color:black;
}


body {
    padding-top: 8vh;
}

@media screen and (max-width: 896px) {
    .hero {
        width: 100%;
        border-radius: 0;
        height: auto;
    }

    .column-box {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .column-image {
        width: 100%;
        height: auto;
    }

    .callout-box {
        margin-left: 20px;
        margin-right: 20px;
        padding: 15px;
    }

    .footer {
        width: 100%;
        border-radius: 0;
        height: auto;
        padding: 15px;
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        margin-top: 15px;
    }
    
    .footer-left {
        align-self: flex-start;
    }

    .copyright {
        align-self: flex-start;
    }

    .navbar {
        height: auto;
        min-height: 60px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .navbar-items {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-top: 0;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    .glowswitch {
        font-size: 30px;
    }

    .collapsibles-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    body {
        padding-top: 70px;
    }
}

@media screen and (max-width: 480px) {
    .navbar-items {
        gap: 10px;
    }
    .navbar-items a, .navbar-items p {
        font-size: 14px;
    }
    .button {
        padding: 5px 10px;
        font-size: 14px;
    }
    .logo {
        height: 3.5vh;
    }
}
