/* =========================================
   TAVASZ • LUXURY + READABLE EDITION
========================================= */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* ===== COLOR SYSTEM ===== */
:root {
  --bg-dark-sand: #cbb289;
  --bg-light-sand: #ecd8b8;  
  --bg-card: #fff6ec;

  --gold: #e6b980;
  --gold-strong: #c68b5f;

  --text: #2f241a;   /*  dunkler = besser lesbar */

  --shadow: rgba(0,0,0,0.25);
}

/* =========================================
   BODY (BESSERE LESBARKEIT)
========================================= */
body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  background: linear-gradient(135deg, var(--bg-light-sand), var(--bg-dark-sand));
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.9;
  font-size: 18px;   /*  Basis größer */
}

/* =========================================
   HEADER
========================================= */
header {
  padding: 70px 15px;
  background: transparent;
}

/* LOGO + TITLE */
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 25px 10px;
}

/* LOGO */
.logo img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 50px var(--shadow);
}

/* =========================================
    TITEL (KLAR + LUXUS + LESBAR)
========================================= */
.site-title {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;

  /* weniger „glow“, mehr Kontrast */
  color: #2f241a;

  text-shadow:
    0 2px 0 rgba(255,255,255,0.4),
    0 6px 18px rgba(0,0,0,0.25);

  animation: titleSoft 5s ease-in-out infinite;
}

/* sanfte Bewegung ohne „unleserlich“ zu werden */
@keyframes titleSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0px); }
}

/* =========================================
   SOCIAL ICONS
========================================= */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 34px;
  margin: 18px 0 8px 0;
}

.social-icons a {
  color: var(--text);
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--gold-strong);
  transform: scale(1.15);
}

/* =========================================
   NAV ICONS
========================================= */
.nav-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 30px;
  margin-top: 10px;
  padding-bottom: 25px;
}

.nav-icons a {
  color: var(--text);
  transition: 0.3s;
}

.nav-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  color: var(--gold-strong);
}

/* =========================================
   SECTIONS (BESSERE LESBARKEIT)
========================================= */
.section {
  background: var(--bg-card);
  margin: 60px auto;
  padding: 55px;
  max-width: 1100px;
  border-radius: 35px;
  box-shadow: 0 25px 60px var(--shadow);
  font-size: 18px;   /*  wichtiger Punkt */
}

/* TITEL IN SECTIONS */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text);
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* =========================================
   TEXT (ALLGEMEIN BESSER LESBAR)
========================================= */
p, li {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* =========================================
   GALERIE
========================================= */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.image-gallery img {
  width: 240px;
  border-radius: 25px;
  box-shadow: 0 15px 35px var(--shadow);
  transition: 0.4s;
}

.image-gallery img:hover {
  transform: scale(1.1);
}

/* =========================================
   VIDEO
========================================= */
.video-wrapper {
  max-width: 92%;
  margin: 40px auto;
  border-radius: 25px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* =========================================
   BUTTON
========================================= */
.button {
  background: var(--gold);
  color: white;
  padding: 16px 36px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.button:hover {
  background: var(--gold-strong);
  transform: scale(1.05);
}

/* =========================================
   FOOTER
========================================= */
footer {
  text-align: center;
  padding: 40px;
  color: white;
  background: var(--bg-dark-sand);
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {

  body {
    font-size: 17px;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
  }

  .logo img {
    width: 105px;
    height: 105px;
  }

  .site-title {
    font-size: 38px;
  }

  .social-icons {
    font-size: 28px;
  }

  .nav-icons {
    font-size: 24px;
  }

  .section {
    padding: 40px;
  }
}

@media (max-width: 480px) {

  .site-title {
    font-size: 30px;
  }

  .logo img {
    width: 90px;
    height: 90px;
  }

  .social-icons {
    font-size: 24px;
  }

  .nav-icons {
    font-size: 20px;
  }
}
/* ==========================
   PREMIUM EMAIL BUTTON
========================== */

.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 32px;

    background: linear-gradient(135deg,#d7b06b,#b88345);

    color: white;
    text-decoration: none;

    border-radius: 50px;

    font-size: 19px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.25),
        inset 0 1px 1px rgba(255,255,255,.4);

    transition: all .35s ease;
}

.email-button i{
    font-size:24px;
}

.email-button:hover{

    transform:translateY(-4px) scale(1.05);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    background:linear-gradient(135deg,#e6c889,#c68b5f);
}
/* =========================================
   PREMIUM SOCIAL ICONS
========================================= */

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:25px 0;
}

.social-icons a{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;

    background:rgba(255,255,255,.22);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.35);

    box-shadow:
        0 10px 30px rgba(0,0,0,.20),
        inset 0 1px 2px rgba(255,255,255,.55);

    transition:.35s;
}

.social-icons a:first-child i{
    color:#1877F2;
    font-size:34px;
}

.social-icons a:last-child i{

    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #833ab4,
        #5851db,
        #405de6
    );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;

    font-size:34px;
}

.social-icons a:hover{

    transform:translateY(-6px) scale(1.12);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);
}
/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-button{

    position:fixed;

    bottom:20px;
    right:20px;

    display:flex;
    align-items:center;
    gap:12px;

    background:#25D366;

    color:white;

    padding:16px 24px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    box-shadow:
        0 15px 35px rgba(0,0,0,.30);

    z-index:9999;

    transition:.35s;

    animation:whatsPulse 2s infinite;
}

.whatsapp-button i{

    font-size:34px;
}

.whatsapp-button:hover{

    background:#22c55e;

    transform:translateY(-4px) scale(1.08);
}

@keyframes whatsPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}
}
