/* --- KeyShare Page Specific Styles --- */

.keyshare-page {
    /* Remove page-specific body padding since base.css handles it */
}

.keyshare-page h1,
.keyshare-page h2,
.keyshare-page h3 {
    font-family: 'Amaranth', sans-serif;
}

.keyshare-page .nav-link-futureglob-keyshare {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.keyshare-page .nav-futureglob-logo {
    height: 35px;
    width: auto;
    filter: none;
}

.keyshare-logo-standalone {
    height: 90px;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

#keyshare-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
        url("/keyshare_hero_bg_rental.png") center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 150px 2rem 4rem; 
    overflow: hidden;
    filter: brightness(1.2);
    margin-top: -118px; 
}

#keyshare-hero .hero-content {
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.2rem 1.2rem;
    background: rgba(0, 0, 0, 0.15); 
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
    color: #fff;
}

#keyshare-hero .hero-tagline {
    font-size: 2.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

#keyshare-hero .hero-subtitle {
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); 
}

.keyshare-page #overview {
    background-color: var(--background-color);
}

.keyshare-page #features {
    background-color: var(--surface-color);
}

.keyshare-page .feature-grid {
    grid-template-columns: repeat(2, 1fr);
}

.keyshare-page .feature-card {
    border-left: 5px solid #6f42c1;
}

.keyshare-page .feature-card h3 {
    color: #6f42c1;
}

.keyshare-page .navbar .nav-container .menu-toggle,
.keyshare-page .navbar .nav-container .nav-menu {
    /* display: none; */ 
}

@media screen and (max-width: 900px) {
    .keyshare-page .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    #keyshare-hero {
        margin-top: -108px;
        padding: 130px 1rem 2rem;
        min-height: 60vh;
    }
    
    #keyshare-hero .hero-content {
        padding: 1.5rem 1rem;
        background: rgba(0, 0, 0, 0.25);
    }
    
    #keyshare-hero .hero-tagline {
        font-size: 2rem;
    }
}