/* Global Styles
  Based on your clay.css
*/
body,
html {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
}

.heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
}

.head-caption {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    color: #1AAB9B;
    font-weight: 700;
}

/* Top Banner */
.top-banner {
    background-color: #b30000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

.top-banner p {
    margin: 0;
}

/* Header
  Based on your .topnav
*/
.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #eaeaea;
    background-color: #ffffff;
}


.topnav .logo-container {
    flex: 10;
}

.topnav .logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: black;
    text-decoration: none;
}

.topnav .navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex: 1;
    /* position: relative; */
}

.whitepaper{
    width: fit-content;
    padding-left: 1vw;
    padding-right: 1.5vw;
    border: 1px solid black;
    border-radius: 0.72vw;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background-color: white;
    display: none;
    /* margin-top: 1vw; */
}
.related{
    position: relative;
    /* padding-bottom: 1vw; */
}

ul{
    display: flex;
    list-style: none;
    gap: 4vw;
    /* border: 1px solid black; */
}

.related:hover , .whitepaper:hover{
    .whitepaper{
        display: flex;
    }
}


.topnav .navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
}

.topnav .navigation a:hover {
    color: #1AAB9B;
}

.topnav .nav-right-spacer {
    flex: 1; /* Balances the logo container */
}


/* Buttons
  Based on your .sign-btn
*/
.sign-btn {
    display: inline-block;
    background-color: #1AAB9B;
    color: white;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 700;
    border: 1px solid #1AAB9B;
    text-decoration: none;
}

.sign-btn:hover {
    background-color: #10685E;
}

.text-link {
    text-decoration: none;
    font-weight: 700;
    color: #1AAB9B;
}

.text-link:hover {
    text-decoration: underline;
}

/* Hero Section
  Based on your .hero-photo
*/
.hero-section {
    background-color: #F9F8F6;
    padding: 80px 30px;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    text-align: left;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Info Banner
  Simple flex layout
*/
.info-banner {
    display: flex;
    align-items: center;
    background-color: #F9F8F6;
    flex-wrap: wrap;
}

.info-banner-image {
    flex: 1;
    text-align: center;
    /* background-color: #4b7991; */
    /* border: 5px solid; */
    width: 40vw;
    /* height: 100%; */
}

.info-banner-image img {
    /* object-fit: cover; */
    width: 100%;
    height: 100%;
}

.info-banner-text {
    flex: 2;
    padding: 16px 30px;
    background-color: #566976;
    color: white;
    min-width: 300px;
}

.info-banner-text h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-banner-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 450px;
}

/* Content Sections
  Based on your .first / .second
*/
.content-wrapper {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 30px;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.content-text {
    flex: 2;
    min-width: 300px;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.content-image-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature icons from screenshot */
.feature-icon-text {
    font-size: 2rem;
    font-weight: 700;
    color: black;
}
.feature-icon-text span:first-child {
    color: #F9A606;
}
.feature-icon-text span:last-child {
    color: #1AAB9B;
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #1AAB9B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.app-icon {
    width: 18vw;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}
.app-icon img{
    width: 100%;
}


/* Community Section
  Based on your .archivements
*/
.community-section {
    padding: 60px 30px;
    background-color: #F9F8F6;
    text-align: center;
}

.community-section p {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.community-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.community-link {
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    background: white;
    min-width: 80px;
}

.community-link:hover {
    background: #f0f0f0;
}

.community-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}


/* Footer
  Based on your .footer style
*/
.footer {
    background-color: white;
    color: #333;
    padding: 50px 25px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex-basis: 180px;
    flex-grow: 1;
}

.footer-column .footer-highlight {
    font-weight: 700;
    color: black;
    font-size: large;
    margin-bottom: 15px;
}

.footer-column p {
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.footer-column a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: normal;
}

.footer-column a:hover {
    color: #1AAB9B;
}

.footer-column input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.footer-column .sign-btn {
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 8px 15px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 700;
}

.copyright {
    text-align: left;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    font-size: small;
    color: #555;
}

