/*
Theme Name: Yoga by Lara Custom
Theme URI: https://blake-hofer.net
Author: Dominique Blake-Hofer
Author URI: https://blake-hofer.net
Description: Custom WordPress Theme für Yoga by Lara mit 1:1 Designübernahme.
Version: 1.0.1
Text Domain: yoga-by-lara
*/

:root {
    --primary: #E63917; 
    --dark: #2D3436;
    --light: #FFFFFF;
    --bg: #F9F9F9;
    --accent-soft: #ef9a8a;
    --text-gray: #717d75;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    background-color: var(--bg);
    color: var(--dark);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* --- WORDPRESS ADMIN BAR FIXES --- */
/* Verschiebt den fixierten Header nach unten, wenn die Admin-Bar da ist */
.admin-bar header {
    top: 32px;
}

/* Berücksichtigt die kleinere Admin-Bar auf mobilen Geräten */
@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* --- Navigation --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: top 0.1s ease-in-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

header img { 
    height: 50px; 
    order: 1; 
    width: auto;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    order: 2;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 20px; 
    margin: 0; 
    align-items: center; 
    padding: 0; 
}

nav a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 600; 
    transition: color 0.3s;
}

nav a:hover { 
    color: var(--primary); 
}

.phone-link {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--primary);
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.phone-link:hover {
    background: var(--primary);
    color: white;
}

/* --- Hero Bereich --- */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #C02E12 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero-sun {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 5px solid rgba(255,255,255,0.3);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero p.motto {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-style: italic;
    margin-top: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 60px;
    height: 60px;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* --- Ankündigungs-Sektion --- */
.announcement {
    max-width: 900px;
    margin: -80px auto 60px auto;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 50;
}

/* Automatische Dropcaps via CSS für Gutenberg-Absätze in der Ankündigung & Detailkarte */
.announcement p:first-of-type::first-letter,
.angebot-card .angebot-content p:first-of-type::first-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    line-height: 0.8;
    float: left;
    margin-right: 15px;
    color: var(--text-gray);
    font-weight: 800;
}

/* Dot-Divider-Ergänzung über WordPress Custom HTML oder Trennzeichen */
.dot-divider {
    display: block;
    width: 25px;
    height: 25px;
    background-color: var(--accent-soft); 
    border-radius: 50%;
    margin: 40px auto;
    clear: both;
}

/* --- Angebote Sektion --- */
.angebote-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.angebote-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.angebot-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.angebot-item:hover {
    transform: translateY(-10px);
}

.round-nav-img-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 8px solid white;
    outline: 5px solid var(--primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.round-nav-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.angebot-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1rem;
    max-width: 200px;
}

/* --- Preisliste Bereich --- */
.price-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.price-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.price-card .sub-info {
    display: block;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 3em;
}

.price-card .main-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    display: block;
}

.price-card .block-info {
    font-weight: 600;
    color: var(--primary);
    background: var(--bg);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.validity-hint {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 40px;
    display: block;
}

.price-footer-info {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 25px;
    color: var(--text-gray);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

/* --- Detailseiten & Über Mich --- */
main {
    padding: 150px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 70vh;
    text-align: center;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.angebot-image-wrapper {
    margin: 0 auto 40px auto;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 10px solid white;
    outline: 6px solid var(--primary);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.angebot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.angebot-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    border-top: 15px solid var(--primary);
    text-align: left;
}

.angebot-card h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

.about-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-card {
    background: white;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
    border-left: 12px solid var(--primary);
    text-align: left;
}

.angebot-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-gray);
}

.angebot-content li { 
    margin-bottom: 10px; 
}

/* --- Footer --- */
footer {
    background: var(--dark);
    text-align: center;
    padding: 60px 20px;
    color: white;
    line-height: 1.8;
    margin-top: 50px;
}

.footer-copyright { font-size: 1.1rem; font-weight: 600; }
.footer-motto { font-style: italic; opacity: 0.9; }
.footer-credits { font-size: 0.85rem; opacity: 0.7; margin-top: 25px; }
.footer-credits a { color: white; text-decoration: underline; }

/* --- WP Kontaktformular Anpassungen --- */
.contact-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    border-top: 15px solid var(--primary);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .angebote-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .nav-right { flex-direction: column; gap: 10px; }
    .hero { padding-top: 150px; }
    .announcement { padding: 40px 20px; margin-top: -40px; }
    .round-nav-img-wrapper { width: 180px; height: 180px; }
    .angebote-grid { grid-template-columns: 1fr; }
    main { padding-top: 180px; }
    .angebot-image-wrapper { width: 250px; height: 250px; }
    .angebot-card, .contact-card { padding: 30px; }
    h1, .angebot-card h1 { font-size: 1.8rem; }
}