body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #111;
}

.hero {
  text-align: center;
  padding: 40px;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  letter-spacing: 2px;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 20px;
}

.subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: #666;
}

nav {
  margin-top: 18px;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: black;
}

nav a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.section {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

.three-columns {
  grid-template-columns: repeat(3, 240px);
}

.four-columns {
  grid-template-columns: repeat(4, 240px);
}

.books {
    text-align: center;
    margin-top: 40px;
}

.book-card {
  background-color: white;
  padding: 14px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.book-card img {
  display: block;
  width: 240px;
  height: auto;
}

.jewelry img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
}

.footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ddd;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #8b5e3c;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

.page-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.page-container p {
    margin-bottom: 15px;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f3ef;
    color: #222;
}

.page-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.legal-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fffdf9;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.legal-card h1 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.legal-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.legal-card a {
    color: #8b5e3c;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 15px;
    color: #8b5e3c;
    text-decoration: none;
    font-size: 0.95rem;
}

.back-link:hover {
    text-decoration: underline;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 200px;
    height: auto;
    margin-top: -30px;
}

.logo-text {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2px;
}

header {
    padding: 10px 0;
}

.intro {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    line-height: 1.7;
    font-size: 16px;   /* statt 18px */
    color: #222;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.intro p {
    margin: 6px 0;
}

.arrow-down {
    text-align: center;
    margin: 20px 0 10px 0;
}

.arrow-down img {
    width: 50px;      /* etwas größer */
    opacity: 0.85;    /* deutlich sichtbarer */
}

.divider {
    text-align: center;
    margin: 30px 0;
}

.divider img {
    width: 300px;     /* anpassen je nach Bild */
    opacity: 0.7;
}

.quote {
    text-align: center;
    font-style: italic;
    color: #666;
    margin: 20px 0 40px 0;
    font-size: 15px;
}

.arrow-up {
    text-align: center;
    margin: 15px 0 30px 0;
}

.arrow-up a {
    display: inline-block;
}

.arrow-up img {
    width: 40px;
    opacity: 0.7;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
}

.modal video {
    display: block;
    margin: 40px auto;
    max-width: 90%;
    height: auto;
}

.close {
    position: absolute;
    top: 20px;
    left: 30px;
    right: auto;

    width: 45px;
    height: 45px;

    background: rgba(0, 0, 0, 0.6);
    color: white;

    font-size: 28px;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 1000;

    border-radius: 6px;
}

.close:hover {
    background: rgba(0, 0, 0, 0.85);
}

.tile img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
}

.card.tile {
    padding: 0;
}


.overlay-text {
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.tile-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}
.contact-links > a {
    display: block;
    margin-bottom: 15px;
     text-align: center;}
.social-row img {
    width: 28px;
    margin: 0 10px;
}
.social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
        line-height: 1.5;
    }

    .logo img {
        width: 90%;
        max-width: 420px;
        height: auto;
    }
     
/* ========================================
   MOBILE ANSICHT
   ======================================== */
@media (max-width: 768px) {

    body {
        padding: 10px;
        margin: 0;
    }

    /* Seite volle Breite */
    .container {
        width: 100%;
        max-width: 100%;
    }

    /* Logo kleiner */
    .logo img {
        width: 70%;
        margin-top: 10px;
    }

    /* Menü sauber untereinander */
    nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    nav a {
        font-size: 18px;
    }

    /* Textbereich */
    .intro {
        padding: 10px;
        font-size: 16px;
        line-height: 1.4;
    }

    /* Bilder */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Kachelbereiche auf Handy horizontal scrollbar */
.grid.four-columns,
.grid.three-columns {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.grid.four-columns .book-card,
.grid.three-columns .book-card {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: start;
}

.grid.four-columns::-webkit-scrollbar,
.grid.three-columns::-webkit-scrollbar {
    display: none;
}