:root {
    --primary-gold: #F2C94C;
    /* Brighter gold */
    --primary-gold-dark: #D4AF37;
    --primary-silber: #d4d4d4;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    /* Warmer/lighter bg */
    --bg-surface: #FFFFFF;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.rot	h2	{
	color:rgba(227, 6, 20, 1);
	
}
.subline	p	{
		font-size: 2.8rem; 
		line-height: 1;   
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
a	{
	color:rgba(227, 6, 20, 1);
	text-decoration:none;
}
a:hover	{
	color: #1F2937;
}
/* Top Bar & Logo */
.top-bar {
    padding: 1rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
}

.logo {
    height: 120px;
    /* User requirement */
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: var(--radius-md);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('Antalya_2018#.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);*/
    background-image: linear-gradient(rgba(227, 6, 20, 0.6), rgba(227, 6, 20, 0.4)), url('img/Symbolfoto_sw.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.subline {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-silber);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-silber);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    text-align:center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta-gold {
	background: #FFF;
	border: 1px solid rgba(212, 175, 55, 1);
}
.hero-cta:hover {
   box-shadow: 0 10px 20px rgba(227, 6, 20, 0.7);
}
.hero-cta-gold:hover {
   box-shadow: 0 10px 20px rgba(212, 175, 55, 0.7);
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Sections */
section {
    padding: 6rem 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    align-items: flex-start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    vertical-align:top;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    margin: 1rem 0;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.package-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-list li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: auto;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-date {
    display: inline-block;
    background: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-item.highlight h3 {
    color: var(--primary-gold-dark);
}

/* Funding */
.funding-stats {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.funding-bar {
    height: 20px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.funding-progress {
    height: 100%;
    background: var(--primary-gold);
    border-radius: 10px;
}

.img-rounded {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-soft);
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 6rem 0 2rem;
    text-align: center;
}

footer h2 {
    color: white;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

div.verwendung	{
	color: var(--text-muted);
}
div.verwendung	ul, ul	{
	padding-left:15px;
}
div.verwendung	ul	li, ul li	{
	margin:15px 0px;
}
ul.hakerl	{
	list-style:none;  
	padding-left:0px;
}
ul.hakerl li {
  padding-left: 1.5em;  /* Platz für das Häkchen */
  text-indent: -1.5em;  /* Text-Einzug zurück */
}
ul.hakerl li::before {
	content: "\2714 ";  /* ✔ */
  margin-right: 8px;
  color: green;
  font-weight: bold;
}
/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
		.subline	p	{
			font-size:2rem;
			margin-top:120px;
		}
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .logo {
        height: 80px;
    }

    .hero {
        border-radius: 0 0 30px 30px;
    }
    .hero-content	{
    	padding-bottom:30px;
    }
}