/* ===================================
   Robyn J. Ashton - Professional Website
   Zwischen Mythos und Moderne
   =================================== */

/* === NEUE FARBPALETTE ===
   #1d3f23 - Dunkles Waldgrün (Logo, dezente Akzente)
   #657b67 - Mittleres Graugrün (Hintergründe)
   #b87333 - Kupfer/Bronze (Hauptakzent)
   #fdfcf9 - Off-White (Basis)
   #2a2a2a - Dunkelgrau (Text)
   ====================== */

/* === RESET & BASIS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    background: #fdfcf9;
    color: #2a2a2a;
    line-height: 1.8;
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1d3f23;
}

/* === HEADER === */
header {
    background: #fdfcf9;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(29, 63, 35, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(253, 252, 249, 0.95);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(29, 63, 35, 0.15);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    text-align: center;
}

.site-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1d3f23;
    letter-spacing: 0.5px;
}

.site-title p {
    font-size: 1.2rem;
    font-style: italic;
    color: #657b67;
    font-family: 'Lora', serif;
}

/* === NAVIGATION === */
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #2a2a2a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #b87333;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #b87333;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #1d3f23 0%, #657b67 100%);
    padding: 8rem 2rem;
    text-align: center;
    color: #fdfcf9;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(184, 115, 51, 0.15), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fdfcf9;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero .tagline {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #fdfcf9;
    opacity: 0.95;
}

.hero .description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #fdfcf9;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero für Unterseiten (kompakter) */
.hero-simple {
    padding: 5rem 2rem;
}

.hero-simple h2 {
    font-size: 3rem;
}

/* === BUTTONS === */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #b87333;
    color: #fdfcf9;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
    background: #a0632d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.btn-secondary {
    background: #657b67;
    color: #fdfcf9;
}

.btn-secondary:hover {
    background: #556658;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fdfcf9;
    border: 2px solid #fdfcf9;
}

.btn-outline:hover {
    background: #fdfcf9;
    color: #1d3f23;
}

/* === SECTIONS === */
.section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-narrow {
    max-width: 900px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1d3f23;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #657b67;
    margin-bottom: 4rem;
    font-style: italic;
}

/* Trennlinie */
.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b87333, transparent);
    margin: 3rem auto;
}

/* === GENRE TAGS === */
.genre-tag {
    display: inline-block;
    background: #b87333;
    color: #fdfcf9;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* === BOOK SHOWCASE === */
.book-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.book-showcase-cover {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 63, 35, 0.2);
    transition: transform 0.4s ease;
}

.book-showcase-cover:hover {
    transform: translateY(-8px) rotate(-2deg);
}

.book-showcase-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-showcase-details h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1d3f23;
}

.book-showcase-details .subtitle {
    font-size: 1.4rem;
    font-style: italic;
    color: #657b67;
    margin-bottom: 2rem;
}

.book-showcase-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

/* === BOOK GRID === */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

.book-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    max-width: 320px;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.book-card-cover {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.book-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.book-card:hover .book-card-cover img {
    transform: scale(1.05);
}

.book-card-info {
    padding: 2rem;
}

.book-card-info h4 {
    font-size: 1.5rem;
    color: #1d3f23;
    margin-bottom: 0.5rem;
}

.book-card-info .genre {
    color: #b87333;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-card-info p {
    font-size: 1rem;
    color: #2a2a2a;
    line-height: 1.7;
}

/* === TESTIMONIALS / LESERSTIMMEN === */
.testimonials {
    background: linear-gradient(135deg, #657b67 0%, #1d3f23 100%);
    padding: 5rem 2rem;
    margin-top: 6rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    color: #fdfcf9;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(253, 252, 249, 0.95);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #b87333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.testimonial-author {
    font-weight: 600;
    color: #1d3f23;
    font-size: 0.95rem;
}

.testimonial-source {
    font-size: 0.9rem;
    color: #657b67;
    margin-top: 0.25rem;
}

/* === ABOUT SECTION === */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 6rem auto;
}

.about-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 63, 35, 0.2);
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1d3f23;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

/* === BEL CANTO / MUSIC SECTION === */
.music-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.music-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.music-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.music-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #b87333;
    color: #fdfcf9;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
}

.social-link:hover {
    background: #a0632d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.social-icon {
    font-size: 1.5rem;
}

/* === NEWSLETTER === */
.newsletter-cta {
    background: #b87333;
    padding: 4rem 2rem;
    text-align: center;
    color: #fdfcf9;
    margin-top: 6rem;
}

.newsletter-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fdfcf9;
}

.newsletter-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lora', serif;
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: #1d3f23;
    color: #fdfcf9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.newsletter-form button:hover {
    background: #2a5433;
    transform: translateY(-2px);
}

/* Newsletter Feedback Messages */
.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.newsletter-message.show {
    display: block;
}

/* === FOOTER === */
footer {
    background: #1d3f23;
    color: #fdfcf9;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h4,
.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fdfcf9;
}

.footer-about p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fdfcf9;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: block;
    margin: 0.6rem 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #b87333;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 252, 249, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .hero h2 {
        font-size: 3rem;
    }

    .book-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .book-showcase-cover {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.4rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .books-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .site-title h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    nav ul {
        gap: 1rem;
    }

    .section {
        margin: 4rem auto;
    }
}