
:root {
--gradient-start: #f5efff;
--gradient-end: #cbb0ff;
--primary: #7b3fe4;
--text-dark: #1c1c1c;
--text-light: #777;
--white: #ffffff;
--radius: 20px;
--shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
color: var(--text-dark);
display: flex;
flex-direction: column;
align-items: center;
}

.hero {
max-width: 900px;
width: 100%;
text-align: center;
}

.hero h1 {
font-size: 2.2rem;
}

.hero h2 {
font-size: 1.5rem;
line-height: 1.4;
font-weight: 700;
margin-bottom: 20px;
}

.hero p {
font-size: 1rem;
margin-bottom: 30px;
}

.highlight {
background: var(--primary);
color: white;
padding: 5px 10px;
border-radius: 5px;
display: inline-block;
position: relative;
}

.cta-btn {
background: var(--primary);
color: white;
text-decoration: none;
border: none;
padding: 10px 20px;
font-size: 1.5rem;
border-radius: var(--radius);
cursor: pointer;
max-width: 96%;
}

.margin-top{
margin-top: 20px;
}

.card {
margin-top: 20px;
background: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 4%;
max-width: 700px;
width: 88%;
}

.check-container {
margin: 80px auto 200px auto;
width: 85%;
max-width: 600px;
background: white;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
padding: 5%;
text-align: center;
}

textarea {
width: 90%;
height: 100px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
resize: none;
font-size: 1rem;
}

button {
background-color: #10a37f;
color: white;
border: none;
padding: 5px 10px;
font-size: 1.5rem;
border-radius: 5px;
cursor: pointer;
margin: 20px auto;
display: block;
}

h1 {
font-size: 1.4rem;
margin-bottom: 20px;
color: #333;
}

.status-box {
font-size: 1.1rem;
padding: 15px;
background: #f9f9f9;
border-radius: 10px;
margin-bottom: 20px;
}

.created-date {
font-size: 0.9rem;
color: #666;
margin-top: 10px;
}

a.button {
display: inline-block;
background-color: #10a37f;
color: white;
text-decoration: none;
padding: 12px 24px;
border-radius: 5px;
font-size: 1rem;
margin-top: 20px;
}

.linkklasse{
display: block;
background-color: #012690;
text-decoration: none;
color: white;
border: none;
padding: 10px 20px;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
margin: 10px 15px;
font-size: 1rem;
}

.output-box{
margin: 30px auto;
padding: 4%;
max-width: 700px;
width: 88%;
}

.output-box-items{
margin-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
gap: 5%;
}

.cta-arrow {
width: 20px;
height: 20px;
margin-left: 8px;
animation: bounce 1.5s ease-in-out 6;
animation-fill-mode: forwards;
}

.chat-container {
width: 88%;
margin: 20px auto;
max-width: 700px;
background: white;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
padding: 4%;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50%{
transform: translateY(-5px);
}
}

.footer {
margin-top: 100px;
font-size: 1rem;
color: var(--text-light);
}

.bubble::after {
display: none;
}





@media only screen and (min-width: 668px) {

h1 {
margin: 0 0 20px 0;
}
p {
font-size: 18px;
line-height: 28px;
}

.bubble::after {
display: block;
content: "";
position: absolute;
left: 200px;
bottom: -40px;
transform: rotate(267deg);
width: 100px;
height: 100px;
background-image: url(boble.svg);
background-repeat: no-repeat;
background-size: contain;
z-index: -9;
}

.hero {
max-width: 900px;
width: 100%;
text-align: center;
}

.hero h1 {
font-size: 3rem;
line-height: 1.2;
font-weight: 700;
margin-bottom: 20px;
}

.hero h2 {
font-size: 4rem;
line-height: 1.4;
font-weight: 700;
margin-bottom: 20px;
}

.highlight {
background: var(--primary);
color: white;
padding: 6px 12px;
border-radius: 12px;
display: inline-block;
position: relative;
}

.hero p {
font-size: 1.3rem;
color: var(--text-light);
margin-bottom: 60px;
}

.cta-btn {
background: var(--primary);
color: white;
text-decoration: none;
border: none;
padding: 16px 32px;
font-size: 2rem;
border-radius: var(--radius);
cursor: pointer;
transition: background 0.3s;
}

.cta-btn:hover {
background: #5e24cb;
}

.margin-top{
margin-top: 200px;
}

.card {
background: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 30px;
max-width: 700px;
width: 100%;
}

.footer {
margin-top: 200px;
font-size: 1rem;
color: var(--text-light);
}

.chat-container {
width: 100%;
margin: 20px auto;
max-width: 700px;
background: white;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
padding: 30px;
}

.chat-title {
font-size: 1.5rem;
margin-bottom: 20px;
font-weight: bold;
color: #333;
}

textarea {
width: 98%;
height: 100px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
resize: none;
font-size: 1rem;
}

.char-counter {
text-align: right;
font-size: 0.9rem;
color: #888;
margin-top: 5px;
}
#charCount {
font-size: 0.9rem;
color: black;
}
#charCount.red {
color: red;
}

button {
background-color: #10a37f;
color: white;
border: none;
padding: 12px 24px;
font-size: 1.5rem;
border-radius: 8px;
cursor: pointer;
margin: 20px auto;
display: block;
}

button:disabled {
background-color: #ccc;
cursor: not-allowed;
}

a.button {
display: inline-block;
background-color: #10a37f;
color: white;
text-decoration: none;
padding: 12px 24px;
border-radius: 8px;
font-size: 1rem;
margin-top: 20px;
}

.linkklasse{
display: block;
background-color: #012690;
text-decoration: none;
color: white;
border: none;
padding: 10px 20px;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
margin: 10px 15px;
font-size: 1rem;
}
.output-box{
min-width: 300px;
max-width: 700px;
margin: 0 auto;
}
.output-box-items{
margin-bottom: 15px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
gap: 5%;}

.cta-arrow {
width: 20px;
height: 20px;
margin-left: 8px;
animation: bounce 1.5s ease-in-out 6;
animation-fill-mode: forwards;
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50%{
transform: translateY(-5px);
}
}


}