@import url('styles.css');

/* Instagram-Link-Text im Header immer sichtbar */
.hero .instagram-link span {
    display: inline !important;
    color: inherit;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.hero .instagram-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.hero .instagram-link:hover {
    opacity: 0.8;
}

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

.hero .logo {
    flex: 0 0 auto;
}

.hero .instagram-link {
    margin-left: auto;
}

:root {
    --primary-color: #6B4E3A; /* warmes Braun */
    --secondary-color: #BFAE99; /* helles Beige */
    --accent-color: #3A6B6B; /* Petrol als Akzent */
    --text-color: #3B2F2F; /* dunkles Braun */
    --background-color: #F7F4EF; /* fast weiß, leicht beige */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: url('img/kerzen.jpg') center/cover fixed no-repeat;
    margin: 0;
    padding: 0;
}

header.hero {
    background: url('img/kerzen.jpg') center/cover no-repeat;
    color: #fff;
    padding: 3rem 0 2rem 0;
    box-shadow: 0 2px 24px rgba(60,40,20,0.06);
    border-radius: 0 0 32px 32px;
    position: relative;
    text-align: center;
}

section, .benefits, .cta-section, .instagram-feed {
    background: var(--background-color);
}

.logo a, .logo a:visited, .logo a:active, .logo a:hover {
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.instagram-link {
    color: #fff !important;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    color: var(--text-color);
    box-shadow: 0 2px 16px rgba(60,40,20,0.07);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'WindSong', cursive;
    font-weight: 500;
    line-height: 1.2;
    color: #BFAE99;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #BFAE99;
    text-shadow: 0 2px 8px #fff, 2px 2px 8px rgba(60,40,20,0.18), 0 1px 1px rgba(0,0,0,0.10);
    border-radius: 0;
    display: block;
    padding: 0;
    background: none;
}

.hero-overlay-card {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(60,40,20,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    backdrop-filter: blur(1px);
    margin: 2rem auto 0 auto;
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
}

.cta-section h2, .cta-section p,
.benefits h2, .benefits p,
.instagram-feed h2, .instagram-feed p,
.hero-overlay-card, .hero-overlay-card h2, .hero-overlay-card p,
.benefit-card, .benefit-card h3, .benefit-card p {
    color: #3B2F2F !important;
}

.cta-section {
    background: var(--background-color);
}

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

.page-header .instagram-link {
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
    margin-left: 0;
    margin-right: 0;
} 