/* Basic Clean Style */
:root {
    --primary: #FF3366;
    --secondary: #333333;
    --background: #FFFFFF;
    --text: #111111;
    --light-gray: #F5F5F7;
    --border: #E5E5E5;
    --content-max-width: 1270px;
}

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

body, html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.5;
    /* height: 100%; */
}

#card-wall-root
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* width: 100vw;
    height: 100vh; */
    z-index: -1;
    opacity: 0.8;
}

.flex {
    display: flex;
}

.flex-1{
    flex: 1;
}

.flex-col {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    background: var(--background);
}
.page-container {
    width: 100%;
    background: var(--background);
    padding-top: 120px;
}

.transparent {
    background: transparent;
}

.bg {
    background: var(--background);
}

.content-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

/* Header */

.header-container {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
}
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    height: 60px;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--background);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 60px;
    padding: 0 20px;
    
}
.languages {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--background);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 60px;
    padding: 0 20px;
}
#language-switcher {
    appearance: none;
    outline: none;
}
/* make room for custom chevron */
#language-switcher {
    padding-right: 28px;
}
.languages {
    position: relative;
}
.languages .chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    color: var(--text);
}
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

/* Hero */
.hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    /* background: var(--light-gray); */
    background: radial-gradient(#fffffff0, #ffffff50, #ffffff10,  #0ce10100);
    height: 100vh;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ff0497, #0ce101);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    cursor: initial;
}

.hero .subtitle {
    font-size: 1.25rem;
    background: linear-gradient(to right, #e86f13, #08d6a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    cursor: initial;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--text);
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Features */
.features {
    background: var(--background);
    padding: 100px 0px;
    cursor: initial;
}

.feature-grid {
    gap: 40px;
}

.feature-card {
    background: var(--background);
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
    background: white;
    max-width: var(--content-max-width);
    flex-direction: row;
    display: flex;
    gap: 30px;
}

.feature-card>div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(to right, #e86f13, #08d6a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.feature-card h3 {
    font-size: 2.5rem;
    font-weight: 100;
}
.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 300;
}
.feature-card span {
    font-size: 1.3rem;
    display: block;
}
.feature-card>p
{
    flex: 1;
}
/* Footer */
.footer-container
{
    margin-top: 40px;
    cursor: initial;
}
.footer {
    padding: 40px 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--secondary);
    flex-wrap: wrap;
    gap: 20px;
    background: var(--background);
    width: 100%;
}

.footer .links {
    display: flex;
    gap: 20px;
}

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

/* Page Content Wrapper to push footer down */
body {
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

/* Responsive */
@media (max-width: 1270px) {
    .header {
        padding: 0px 20px;
    }
    .content-container {
        padding: 0px 20px;
    }
    .features>.content-container{
        padding: 0px;
    }
    .hero-text {
        padding: 0px 20px;
    }
    #language-switcher {
        max-width: 100px;
    }
    .feature-card {
        margin: 0px 20px;
        padding: 20px;
        width: calc(100% - 40px);
    }
    .footer {
        padding: 20px;
    }
}