/* ========================================
   GLASSUMBRELLA.IO HOMEPAGE STYLES
   Modern UX improvements for The Smithy homepage
   Last updated: 2026-01-05
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 80px 32px 60px !important;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9),
                 0 4px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero h2 {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-ctas {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-ctas .btn {
    min-width: 200px;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-ctas .btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue)) !important;
    border: 2px solid transparent !important;
    color: white !important;
}

.hero-ctas .btn-brand-primary:hover {
    background: linear-gradient(135deg, var(--brand-purple-light), var(--brand-blue-light)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 68, 193, 0.5);
}

.hero-ctas .btn-outline-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: white !important;
    backdrop-filter: blur(8px);
}

.hero-ctas .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Nav button sizing - removed homepage override for consistency across all pages */

/* ========================================
   WELCOME TO THE SMITHY SECTION
   ======================================== */

.what-is-smithy {
    background: linear-gradient(180deg, rgba(50, 48, 49, 0.95) 0%, rgba(40, 38, 39, 0.92) 100%);
    backdrop-filter: blur(12px);
    padding: 100px 0 70px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.what-is-smithy h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.what-is-smithy .lead {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.value-props {
    margin-top: 4rem !important;
}

.value-prop-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-prop-card:hover {
    transform: translateY(-8px);
}

/* Color accent blocks */
.accent-block {
    width: 60px;
    height: 4px;
    margin: 0 auto 2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.accent-purple {
    background: linear-gradient(90deg, var(--brand-purple), #9B64E1);
    box-shadow: 0 2px 8px rgba(123, 68, 193, 0.4);
}

.accent-blue {
    background: linear-gradient(90deg, var(--brand-blue), #3EA6FF);
    box-shadow: 0 2px 8px rgba(30, 150, 252, 0.4);
}

.accent-mint {
    background: linear-gradient(90deg, var(--brand-mint), #AAE5DA);
    box-shadow: 0 2px 8px rgba(154, 213, 202, 0.4);
}

.value-prop-card:hover .accent-block {
    width: 80px;
    box-shadow: 0 4px 12px rgba(154, 213, 202, 0.6);
}

.value-prop-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.value-prop-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* ========================================
   FEATURED PROJECTS SECTION
   ======================================== */

.our-projects {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(35, 35, 35, 0.85) 100%);
}

.our-projects h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.our-projects .lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 4rem;
}

/* Enhanced Project Tiles */
.project-tile {
    background: linear-gradient(135deg, rgba(50, 48, 49, 0.98) 0%, rgba(40, 38, 39, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.project-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-mint));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(123, 68, 193, 0.35);
    border-color: rgba(123, 68, 193, 0.3);
}

.project-tile:hover::before {
    opacity: 1;
}

.project-type {
    display: inline-block;
    background: rgba(123, 68, 193, 0.2);
    border: 1px solid rgba(154, 213, 202, 0.4);
    color: var(--brand-mint);
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.project-logo {
    height: 120px;
    width: 120px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.project-tile:hover .project-logo {
    transform: scale(1.05);
}

.project-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.project-tile h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.project-tile p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.project-tile .btn {
    margin-top: auto;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue)) !important;
    border: none !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-tile .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(123, 68, 193, 0.5);
    background: linear-gradient(135deg, var(--brand-purple-light), var(--brand-blue-light)) !important;
}

/* Explore All Projects Button */
.our-projects .btn-outline-light {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(154, 213, 202, 0.6) !important;
    color: var(--brand-mint) !important;
    font-weight: 600;
    padding: 14px 40px;
    transition: all 0.3s ease;
}

.our-projects .btn-outline-light:hover {
    background: rgba(154, 213, 202, 0.15) !important;
    border-color: var(--brand-mint) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(154, 213, 202, 0.3);
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */

.smithy-in-action {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, rgba(50, 48, 49, 0.95) 0%, rgba(40, 38, 39, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.smithy-in-action h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.smithy-in-action .lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 4rem;
}

/* Enhanced Community Member Cards */
.member-card {
    background: linear-gradient(135deg, rgba(50, 48, 49, 0.98) 0%, rgba(40, 38, 39, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(154, 213, 202, 0.25);
    border-color: rgba(154, 213, 202, 0.3);
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.3), rgba(154, 213, 202, 0.3));
    border: 3px solid rgba(154, 213, 202, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.member-card:hover .member-photo {
    border-color: rgba(154, 213, 202, 0.6);
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.member-role {
    display: block;
    color: var(--brand-mint);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-card p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* Enhanced Testimonial - Horizontal Layout */
.featured-voice {
    max-width: 1000px;
    margin: 5rem auto 0;
    padding: 3rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(154, 213, 202, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(154, 213, 202, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-voice blockquote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid var(--brand-mint);
    padding-left: 2.5rem;
    text-align: left;
    margin: 0;
    line-height: 1.7;
    opacity: 0.95;
    flex: 1;
}

.featured-voice blockquote p {
    margin-bottom: 1.5rem;
}

.featured-voice cite {
    display: block;
    margin-top: 1.5rem;
    font-weight: 700;
    text-align: right;
    color: var(--brand-mint);
    font-size: 1.05rem;
    font-style: normal;
}

/* ========================================
   READY TO BUILD SECTION
   ======================================== */

.ready-to-build {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.4), rgba(30, 150, 252, 0.35));
    padding: 120px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.ready-to-build h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
}

.ready-to-build .lead {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tagline {
    font-style: italic;
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8),
                 0 4px 24px rgba(123, 68, 193, 0.6);
    opacity: 0.95;
}

.final-ctas {
    margin-top: 3rem;
}

.final-ctas .btn {
    min-width: 220px;
    padding: 18px 48px;
    font-size: 20px;
    font-weight: 700;
}

.final-ctas .btn-brand-primary {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue)) !important;
    border: 2px solid transparent !important;
    color: white !important;
}

.final-ctas .btn-brand-primary:hover {
    background: linear-gradient(135deg, var(--brand-purple-light), var(--brand-blue-light)) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(123, 68, 193, 0.5);
}

.final-ctas .btn-outline-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: white !important;
    backdrop-filter: blur(8px);
}

.final-ctas .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.3);
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 56px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .what-is-smithy h2,
    .our-projects h2,
    .smithy-in-action h2 {
        font-size: 40px;
    }

    .ready-to-build h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 24px 40px !important;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    .hero h2 {
        font-size: 18px;
        margin-bottom: 2.5rem;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-ctas .btn {
        width: 100%;
        margin: 0 !important;
        min-width: unset;
    }

    .what-is-smithy {
        padding: 70px 0 50px !important;
    }

    .our-projects,
    .smithy-in-action {
        padding: 70px 0 !important;
    }

    .ready-to-build {
        padding: 80px 0 !important;
    }

    .what-is-smithy h2,
    .our-projects h2,
    .smithy-in-action h2 {
        font-size: 32px;
    }

    .ready-to-build h2 {
        font-size: 36px;
    }

    .what-is-smithy .lead,
    .our-projects .lead,
    .smithy-in-action .lead,
    .ready-to-build .lead {
        font-size: 17px;
    }

    .value-prop-card,
    .project-tile,
    .member-card {
        padding: 2rem 1.5rem;
    }

    .featured-voice {
        padding: 2rem;
        margin-top: 3rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-photo {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .featured-voice blockquote {
        font-size: 1.15rem;
        padding-left: 1.5rem;
    }

    .final-ctas .btn {
        width: 100%;
        margin: 0 0 1rem 0 !important;
        min-width: unset;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }

    .what-is-smithy h2,
    .our-projects h2,
    .smithy-in-action h2 {
        font-size: 28px;
    }

    .ready-to-build h2 {
        font-size: 32px;
    }

    .tagline {
        font-size: 1.35rem;
    }
}
