/* Session Investment Multi-Page Website - Main CSS */

@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap";

:root {
    --radius: .625rem;
    --background: #f8fffe;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --popover: #ffffff;
    --popover-foreground: #1a1a1a;
    --primary: #10b981;
    --primary-foreground: #ffffff;
    --secondary: #ecfdf5;
    --secondary-foreground: #064e3b;
    --muted: #f0fdf4;
    --muted-foreground: #6b7280;
    --accent: #d1fae5;
    --accent-foreground: #064e3b;
    --destructive: #ef4444;
    --border: #d1d5db;
    --input: #d1d5db;
    --ring: #10b981;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --gold-800: #92400e;
    --gold-900: #78350f;
    --sage-50: #f7f9f7;
    --sage-100: #e8f2e8;
    --sage-200: #c8e0c8;
    --sage-300: #9cc99c;
    --sage-400: #6ba86b;
    --sage-500: #4a8a4a;
    --sage-600: #3a6e3a;
    --sage-700: #2f5a2f;
    --sage-800: #264826;
    --sage-900: #1e3a1e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}

.App {
    min-height: 100vh;
}

/* Smooth scrolling for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Header and Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffffff2;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--emerald-100);
    z-index: 999;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--emerald-800);
    text-decoration: none;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--sage-700);
    font-weight: 500;
    transition: color .3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-links a:hover {
    color: var(--emerald-600);
    background: var(--emerald-50);
}

.nav-links a.active {
    color: var(--emerald-600);
    background: var(--emerald-100);
}

/* Main Content */
.main-content {
    padding-top: 100px; /* Account for fixed header */
    min-height: calc(100vh - 100px);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--emerald-100);
}

/* Hero Section (Home Page Only) */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 25%, var(--emerald-700) 50%, var(--emerald-600) 75%, var(--emerald-500) 100%);
    background-image: url('../images/hero-3d-background-v2-Cwbd1rKO.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 2rem;
    margin-top: 2rem;
    box-shadow: 0 20px 60px #10b9814d;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #10b9811a, #064e3b33);
    z-index: 1;
    animation: backgroundShimmer 6s ease-in-out infinite;
}

@keyframes backgroundShimmer {
    0%, 100% {
        background: linear-gradient(135deg, #10b9811a, #064e3b33);
    }
    50% {
        background: linear-gradient(135deg, #10b98126, #064e3b40);
    }
}

.hero:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, .1) 50%, transparent 70%);
    z-index: 1;
    animation: scanLine 8s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        transform: translate(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translate(100%) translateY(100%) rotate(45deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    animation: textGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 3;
}

@keyframes textGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, .3), 0 0 20px rgba(255, 255, 255, .3);
    }
}

.hero .highlight {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: goldShimmer 2s ease-in-out infinite alternate, textBounce 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes goldShimmer {
    0% {
        background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    100% {
        background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

@keyframes textBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.ceo-slogan {
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.slogan-text {
    font-size: 1.5rem;
    color: var(--emerald-100);
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
    margin: 0;
    font-style: italic;
}

.slogan-emphasis {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--emerald-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: none;
    animation: sloganGlow 3s ease-in-out infinite alternate;
    font-style: normal;
    letter-spacing: .5px;
}

@keyframes sloganGlow {
    0% {
        background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--emerald-300));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: scale(1);
    }
    100% {
        background: linear-gradient(135deg, var(--gold-400), var(--gold-600), var(--emerald-400));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: scale(1.02);
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--emerald-50);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px #f59e0b4d;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #f59e0b66;
}

.btn-secondary {
    background: #ffffff1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s ease;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff3;
    border-color: #fff6;
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--emerald-100);
    font-size: .9rem;
    font-weight: 500;
    padding: .75rem 1.5rem;
    background: #ffffff1a;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--emerald-800);
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--emerald-700);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sage-700);
    margin-bottom: 1.5rem;
}

/* Technology Cards */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technology-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px #00000014;
    border: 1px solid var(--emerald-100);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.technology-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-500), var(--gold-500));
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px #10b98126;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald-100), var(--emerald-200));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--emerald-600);
    font-size: 1.5rem;
}

.tech-category {
    display: inline-block;
    background: var(--gold-100);
    color: var(--gold-800);
    padding: .25rem .75rem;
    border-radius: 1rem;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--emerald-800);
}

.tech-content p {
    color: var(--sage-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tech-features li {
    color: var(--sage-700);
    font-size: .9rem;
    position: relative;
    padding: .25rem 0 .25rem 1.5rem;
}

.tech-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald-500);
    font-weight: 700;
}

.tech-button {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    border: none;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .3s ease;
    text-decoration: none;
}

.tech-button:hover {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--emerald-900);
    color: #fff;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-content p {
    color: var(--emerald-200);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-300);
}

.footer-section a {
    display: block;
    color: var(--emerald-200);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: color .3s ease;
}

.footer-section a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    border-top: 1px solid var(--emerald-800);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--emerald-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
}

