@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Italiana&display=swap');

body{
    width: 100%;
    height: 100%;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

.topbar{
    height: 72px;
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 2px 16px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    z-index: 1000;
    background: rgba(213, 0, 0, 0.5);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.topbar a{
    font-weight: 400;
    padding: 0px 35px;
    font-size: 175%;
    color: white;
    text-decoration: none;
    transition: all .5s;

}
.topbar a:hover{
    font-weight: 600;
    transition: all .5s;
}

.topbarlogo{
    padding-top: 28px;
    opacity:100%;
    height: 100px;
    transition: 0.5s;
    padding-left: 20px;
}

.topbarlogo:hover{
    padding-top: 55px;
    padding-left: 10px;
    height: 125px;
    transition: 0.5s;
}


.hero{
    height: 100vh;
    width:100%;

    background-image: url("../assets/media/images/hq5pillars.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.hero2{
    height: 50vh;
    width:100%;

    background-image: url("../assets/media/images/hqboardroom.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.hero3{
    height: 50vh;
    width:100%;

    background-image: url("../assets/media/images/committeeroomsentrances.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.hero-text{
    position: absolute;
    bottom: 32px;
    left:32px;
    color: white;
    text-decoration: none;
}

.hero-text h1 {
    font-weight: 800;
    font-size: 5rem;
    margin-bottom: 0px;
    text-shadow: 5px 5px 50px black;
    font-family: 'Inter', Arial, Helvetica, sans-serif;

}

.hero-text p {
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 2.2rem;
    text-shadow: 2px 2px 25px black;
    font-family: 'Italiana', Arial, Helvetica, sans-serif;
    font-style: italic;
}

p {
  overflow-wrap: anywhere;
}


.policies{
    padding: 16px 32px;
    align-items: center;
}

.policy-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy{
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgb(189, 189, 189);
    background:  rgba(242, 242, 242, 0.5);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    transition: all 0.3s;
}

.policy:hover{
    border: 1px solid #e60000;
    background: rgba(250, 250, 250, 0.5);
    transition: all 0.3s;
}

.policies h1{
    align-self: center;
    font-size: 3.5rem;
    font-family: 'Italiana', Arial, Helvetica, sans-serif;
}

.policy .title{
    color: rgb(16, 16, 16);
    font-weight: 600;
    font-size: 1.4rem;
    font-family: 'Italiana', Arial, Helvetica, sans-serif;
}

.policy .description{
    color: rgb(27, 27, 27);
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.footer{
    background: #d50000;
    color: white;
    margin-top: 80px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3{
    font-family: 'Italiana', Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section ul{
    list-style: none;
    padding:0;
    margin: 0;
    
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color:white;
    text-decoration: none;
    opacity: 0.7s;
    transition: all 0.2s ease;
    
}

.footer-section a:hover{
    opacity:1;
    text-decoration: underline;
}

.footer-section p{
    line-height: 1.6;
    opacity:0.95;
}

.social-links{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 16px;
    font-size: 0.9rem;
    opacity: 0.85;
    width: 75%;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }
}