/* CSS Document */



/* HEADER */

header{
background:var(--lila-hell);
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

header nav a{
margin-left:20px;
font-weight:600;
text-decoration:none;
color:#333;
}



*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Montserrat,sans-serif;
}

body{
background:#fff;
color:var(--text);
}




/* HERO */

.hero{
background:url(../images/hero.png) center/cover;
padding:140px 20px;
text-align:center;
color:#fff;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:3rem;
}

/* LAYOUT */

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
display:grid;
grid-template-columns:3fr 1fr;
gap:40px;
}

/* FILTER BUTTONS */

.filter-bar{
margin-bottom:30px;
}

.filter-btn{
background:var(--beige);
border:none;
padding:10px 18px;
margin:5px;
border-radius:20px;
cursor:pointer;
font-weight:600;
}

.filter-btn.active{
background:var(--lila);
color:white;
}

/* BLOG GRID */

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.blog-card{
background:var(--beige);
border-radius:10px;
overflow:hidden;
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img{
width:100%;
display:block;
}

/* BADGE */

.badge{
position:absolute;
background:var(--lila);
color:white;
font-size:12px;
padding:6px 10px;
border-radius:20px;
margin:10px;
}

.card-image{
position:relative;
}

.blog-card h3{
font-family:'Playfair Display',serif;
padding:15px;
font-size:1.2rem;
}

.blog-card p{
padding:0 15px 15px;
font-size:0.95rem;
}

/* SIDEBAR */

.sidebar{
position:sticky;
top:100px;
display:flex;
flex-direction:column;
gap:25px;
}

.sidebar h3{
font-family:'Playfair Display',serif;
}

.category{
background:var(--beige);
padding:15px;
border-radius:10px;
font-weight:600;
border-left:4px solid var(--lila);
text-decoration:none;
color:#333;
}

.category:hover{
background:#eee;
}

/* BREADCRUMB */

.breadcrumb{
font-size:14px;
margin-bottom:20px;
}

.breadcrumb a{
color:#666;
text-decoration:none;
}

/* ARTICLE */

article img{
width:100%;
border-radius:10px;
margin:20px 0;
}

article h2{
font-family:'Playfair Display',serif;
margin-top:40px;
margin-bottom:10px;
}

article p{
margin-bottom:15px;
}





/* NEWSLETTER */

.newsletter{
background:var(--lila);
color:white;
padding:40px;
border-radius:10px;
text-align:center;
margin-top:50px;
}

.newsletter input{
padding:12px;
border:none;
border-radius:5px;
margin-right:10px;
}

.newsletter button{
padding:12px 18px;
border:none;
background:white;
color:var(--lila);
font-weight:600;
border-radius:5px;
}

.newsletter a{
color:var(--weiss);
margin:0 10px;
}

.footer-logo{

height:50px;
margin-bottom:15px;
}


/* PIN BUTTON */

.pin{
background:#E60023;
color:white;
padding:10px 15px;
border-radius:5px;
display:inline-block;
margin-bottom:20px;
text-decoration:none;
}

/* AUTHOR BOX */

.author{
background:var(--beige);
padding:25px;
border-radius:10px;
margin-top:40px;
display:flex;
gap:20px;
align-items:center;
}

.author img{
width:125px;
border-radius:50%;
}

/* RELATED POSTS */

.related{
margin-top:60px;
}

.related h3{
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.related-card{
background:var(--beige);
border-radius:10px;
overflow:hidden;
}

.related-card img{
width:100%;
}

.related-card p{
padding:10px;
font-weight:600;
}

/* FAQ */

.faq{
margin-top:60px;
}

.faq h3{
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.faq-item{
margin-bottom:15px;
}

.product-box{

background:#F6F0E7;
padding:20px;
border-radius:10px;
margin:30px 0;
text-align:center;
width: 250px;

}

.buy-button{

background:#9C84E3;
color:white;
padding:10px 20px;
border-radius:5px;
display:inline-block;

}

.gewinnspiel{

background:#F6F0E7;
padding:60px 20px;

}

.gewinnspiel-container{

max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;

}

.gewinnspiel-bild img{

width:100%;
border-radius:10px;

}

.gewinnspiel-text h2{

font-family:'Playfair Display',serif;
font-size:2rem;
margin-bottom:20px;

}

.gewinnspiel-text ul{

margin:15px 0;
padding-left:20px;

}

.gewinnspiel-text button{

margin-top:15px;
background:#9C84E3;
color:white;
padding:12px 20px;
border:none;
border-radius:5px;
font-weight:600;
cursor:pointer;

}

.logolo{
  
    border-radius:30px;
}


.pin-wrapper {
  text-align: center;
  margin: 30px 0;
}

.pin-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


@media(max-width:900px){

.gewinnspiel-container{
grid-template-columns:1fr;
}

}

.logo img{


height:100px;

}



/* FOOTER */

footer{
background:var(--pastell-lila);
color:var(--weiss);
padding:40px 20px;
text-align:center;
margin-top:40px;
}

footer a{
color:var(--weiss);
margin:0 10px;
}


.lavendel-banner{
    width:100%;
    border-radius:5px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


/* MOBILE */

@media(max-width:900px){

.container{
grid-template-columns:1fr;
}

.sidebar{
position:relative;
top:0;
}

}


table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

th {
  background: #8a5bbf;
  color: #fff;
  padding: 12px;
  text-align: left;
}

td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

tr:nth-child(even) {
  background: #f7f3fb;
}

 .top-articles, .categories, .blog-list, .pinterest-gallery {
      display: grid; grid-gap: 20px;
    }


    .top-articles, .blog-list { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    .categories { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: center; }
    .categories div { background: var(--pastell-lila); padding: 40px 20px; border-radius: 10px; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
    .categories div:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

    .top-articles div, .blog-list div, .pinterest-gallery div { background: var(--beige); border-radius: 10px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
    .top-articles div:hover, .blog-list div:hover, .pinterest-gallery div:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
    .top-articles img, .blog-list img, .pinterest-gallery img { width: 100%; display: block; }
    .top-articles h3, .blog-list h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; padding: 15px; }
    .top-articles p, .blog-list p { padding: 0 15px 15px 15px; font-size: 0.95rem; }


