systeme.io
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
color: #1f2933;
background: #ffffff;
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
}
.top-bar {
background: #003b5c;
color: #fff;
text-align: center;
padding: 8px 16px;
font-size: 14px;
}
.site-header {
background: #fff;
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
position: sticky;
top: 0;
z-index: 1000;
}
.main-navigation {
max-width: 1280px;
margin: 0 auto;
padding: 18px 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-size: 26px;
font-weight: 800;
color: #0077b6;
}
.menu {
display: flex;
gap: 24px;
list-style: none;
font-size: 15px;
font-weight: 600;
}
.nav-button,
.primary-button {
background: #ff6b35;
color: #fff;
padding: 12px 22px;
border-radius: 999px;
font-weight: 700;
}
.secondary-button {
background: #fff;
color: #003b5c;
padding: 12px 22px;
border-radius: 999px;
font-weight: 700;
}
.hero {
min-height: 720px;
background:
linear-gradient(rgba(0, 40, 70, 0.55), rgba(0, 40, 70, 0.55)),
url("hero-reisebild.jpg") center/cover no-repeat;
color: #fff;
padding: 100px 24px 60px;
}
.hero-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.hero h1 {
font-size: clamp(42px, 6vw, 72px);
line-height: 1.05;
margin-bottom: 24px;
}
.hero p {
font-size: 22px;
max-width: 850px;
margin: 0 auto 34px;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
.search-box {
max-width: 1100px;
margin: 60px auto 0;
background: #fff;
color: #1f2933;
padding: 28px;
border-radius: 24px;
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.search-box h2 {
margin-bottom: 20px;
}
.search-tabs {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.search-tabs button {
border: 1px solid #d0d7de;
background: #f8fafc;
padding: 12px 18px;
border-radius: 999px;
cursor: pointer;
font-weight: 600;
}
.search-tabs button:hover {
background: #0077b6;
color: #fff;
}
.trust-bar {
max-width: 1180px;
margin: -35px auto 70px;
background: #fff;
border-radius: 18px;
padding: 24px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
text-align: center;
box-shadow: 0 12px 35px rgba(0,0,0,0.12);
font-weight: 700;
}
section {
padding: 80px 24px;
}
section h2 {
text-align: center;
font-size: 38px;
margin-bottom: 42px;
color: #003b5c;
}
.category-grid,
.deal-grid,
.article-grid {
max-width: 1180px;
margin: 0 auto;
display: grid;
gap: 24px;
}
.category-grid {
grid-template-columns: repeat(3, 1fr);
}
.deal-grid,
.article-grid {
grid-template-columns: repeat(3, 1fr);
}
.category-grid article,
.deal-grid article,
.article-grid article {
background: #fff;
border-radius: 22px;
padding: 30px;
box-shadow: 0 8px 28px rgba(0,0,0,0.08);
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-grid article:hover,
.deal-grid article:hover,
.article-grid article:hover {
transform: translateY(-6px);
box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}
article h3 {
color: #0077b6;
font-size: 22px;
margin-bottom: 12px;
}
.deals {
background: #f4f9fc;
}
.deal-grid a {
display: inline-block;
margin-top: 18px;
color: #ff6b35;
font-weight: 800;
}
.inspiration ul {
max-width: 1000px;
margin: 0 auto;
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
list-style: none;
}
.inspiration li {
background: #edf7fb;
color: #003b5c;
padding: 14px 22px;
border-radius: 999px;
font-weight: 700;
}
.newsletter {
background: #003b5c;
color: #fff;
text-align: center;
}
.newsletter h2 {
color: #fff;
}
.newsletter p {
max-width: 720px;
margin: 0 auto 28px;
font-size: 18px;
}
.newsletter form {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.newsletter input {
width: 360px;
max-width: 100%;
padding: 16px 20px;
border-radius: 999px;
border: none;
}
.newsletter button {
border: none;
background: #ff6b35;
color: #fff;
padding: 16px 26px;
border-radius: 999px;
font-weight: 800;
cursor: pointer;
}
.final-cta {
text-align: center;
background: #f9fafb;
}
.final-cta p {
max-width: 720px;
margin: 0 auto 28px;
font-size: 18px;
}
.site-footer {
background: #061826;
color: #fff;
padding: 60px 24px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
}
.site-footer h4 {
margin-bottom: 16px;
font-size: 18px;
}
.site-footer a {
display: block;
color: #cbd5e1;
margin-bottom: 8px;
font-size: 14px;
}
@media (max-width: 980px) {
.menu {
display: none;
}
.trust-bar,
.category-grid,
.deal-grid,
.article-grid,
.site-footer {
grid-template-columns: 1fr 1fr;
}
.hero {
padding-top: 80px;
}
}
@media (max-width: 640px) {
.main-navigation {
padding: 16px;
}
.hero h1 {
font-size: 38px;
}
.hero p {
font-size: 18px;
}
.trust-bar,
.category-grid,
.deal-grid,
.article-grid,
.site-footer {
grid-template-columns: 1fr;
}
section {
padding: 60px 18px;
}
section h2 {
font-size: 30px;
}
}