/* ===========================
EVENTSERVICE EIFEL PREMIUM
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#0f0f0f;

color:#fff;

overflow-x:hidden;

}

.container{

width:90%;

max-width:1400px;

margin:auto;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}



/* ===========================
NAVIGATION
=========================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

background:rgba(0,0,0,.65);

backdrop-filter:blur(16px);

transition:.35s;

}

.navbar.scrolled{

background:#111;

box-shadow:0 10px 30px rgba(0,0,0,.45);

}

.navbar .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo img{

height:75px;

}

.menu{

display:flex;

gap:40px;

align-items:center;

}

.menu a{

font-weight:600;

transition:.3s;

}

.menu a:hover{

color:#ff8c00;

}

.whatsapp-header{

background:#25D366;

padding:14px 28px;

border-radius:40px;

font-weight:700;

transition:.3s;

}

.whatsapp-header:hover{

transform:translateY(-4px);

}



/* ===========================
HERO
=========================== */

.hero{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:40px;

padding:150px 0 90px;

position:relative;

background:linear-gradient(135deg,#111,#1b1b1b);

overflow:hidden;

}

.hero-left{

padding:60px;

z-index:2;

}

.hero-tag{

display:inline-block;

padding:12px 25px;

background:#ff8c00;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}

.hero h1{

font-size:72px;

line-height:1.1;

margin-bottom:25px;

}

.hero p{

font-size:22px;

color:#ddd;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-orange{

background:#ff8c00;

padding:18px 40px;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.btn-orange:hover{

transform:translateY(-5px);

background:#ff7300;

}

.btn-white{

background:white;

color:black;

padding:18px 40px;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.btn-white:hover{

transform:translateY(-5px);

}

.hero-images{

display:flex;

gap:20px;

width:100%;

}

.hero-image{

width:50%;

height:340px;

object-fit:cover;

border-radius:22px;

box-shadow:0 30px 60px rgba(0,0,0,.45);

transition:.4s;

}

.hero-image:hover{

transform:translateY(-6px);

}

@media(max-width:1100px){

.hero-images{

flex-direction:column;

align-items:center;

}

.hero-image{

width:100%;

max-width:500px;

height:280px;

}

}

@keyframes float{

0%{transform:translateY(0px);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0px);}

}

/* ===========================
SECTION TITLE
=========================== */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

background:#ff8c00;

padding:10px 24px;

border-radius:40px;

font-weight:700;

margin-bottom:20px;

}

.section-title h2{

font-size:52px;

margin-bottom:20px;

}

.section-title p{

max-width:850px;

margin:auto;

color:#d8d8d8;

font-size:20px;

line-height:1.7;

}



/* ===========================
PRODUKTE
=========================== */

.products{

padding:120px 0;

background:#151515;

}

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

gap:40px;

}

.product-card{

background:#202020;

border-radius:25px;

overflow:hidden;

transition:.35s;

box-shadow:0 25px 55px rgba(0,0,0,.35);

}

.product-card:hover{

transform:translateY(-12px);

box-shadow:0 40px 70px rgba(0,0,0,.45);

}

.product-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.45s;

}

.product-card:hover img{

transform:scale(1.06);

}

.product-info{

padding:30px;

}

.price{

display:inline-block;

background:#ff8c00;

padding:10px 20px;

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

.product-info h3{

font-size:30px;

margin-bottom:20px;

}

.product-info p{

color:#d7d7d7;

line-height:1.8;

margin-bottom:20px;

}

.product-info li{

margin:10px 0;

color:#d5d5d5;

}

.btn-product{

display:block;

margin-top:30px;

text-align:center;

background:#ff8c00;

padding:18px;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.btn-product:hover{

background:#ff7000;

transform:translateY(-4px);

}



/* ===========================
DESSERTS
=========================== */

.desserts{

padding:120px 0;

background:#101010;

}

.dessert-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.dessert-card{

overflow:hidden;

border-radius:20px;

transition:.35s;

box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.dessert-card:hover{

transform:translateY(-10px);

}

.dessert-card img{

width:100%;

height:320px;

object-fit:cover;

transition:.45s;

}

.dessert-card:hover img{

transform:scale(1.08);

}

/* ===========================
VORTEILE
=========================== */

.advantages{

padding:120px 0;

background:#171717;

}

.advantage-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:35px;

}

.advantage-card{

background:#202020;

padding:40px;

border-radius:25px;

text-align:center;

transition:.35s;

box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.advantage-card:hover{

transform:translateY(-12px);

border:2px solid #ff8c00;

}

.advantage-card h3{

font-size:28px;

margin-bottom:20px;

}

.advantage-card p{

color:#d5d5d5;

line-height:1.8;

}



/* ===========================
GALERIE
=========================== */

.gallery{

padding:120px 0;

background:#111;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.gallery-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:22px;

cursor:pointer;

transition:.4s;

box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.gallery-grid img:hover{

transform:scale(1.05);

filter:brightness(110%);

}



/* ===========================
BEWERTUNGEN
=========================== */

.reviews{

padding:120px 0;

background:#181818;

}

.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.review-card{

background:#222;

padding:35px;

border-radius:20px;

font-size:18px;

line-height:1.8;

box-shadow:0 20px 45px rgba(0,0,0,.35);

transition:.35s;

}

.review-card:hover{

transform:translateY(-10px);

}

.review-card strong{

display:block;

margin-top:25px;

color:#ff8c00;

font-size:20px;

}

/* ===========================
KONTAKT
=========================== */

.contact{

padding:120px 0;

background:#101010;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.contact-left h2{

font-size:52px;

margin:20px 0;

}

.contact-left p{

color:#d8d8d8;

line-height:1.8;

margin-bottom:40px;

}

.contact-box{

margin-bottom:30px;

}

.contact-box h3{

margin-bottom:10px;

color:#ff8c00;

}

.contact-box a{

font-size:20px;

}

.contact-right form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-right input,

.contact-right textarea{

padding:18px;

border:none;

border-radius:15px;

background:#202020;

color:white;

font-size:17px;

}

.contact-right textarea{

height:180px;

resize:none;

}

.contact-right button{

background:#ff8c00;

color:white;

border:none;

padding:18px;

border-radius:50px;

font-size:18px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.contact-right button:hover{

background:#ff7000;

transform:translateY(-4px);

}



/* ===========================
FOOTER
=========================== */

footer{

background:#080808;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:50px;

}

.footer-logo{

width:180px;

margin-bottom:20px;

}

.footer-grid h3{

margin-bottom:20px;

color:#ff8c00;

}

.footer-grid a{

display:block;

margin-bottom:12px;

transition:.3s;

}

.footer-grid a:hover{

color:#ff8c00;

}

.copyright{

text-align:center;

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.1);

color:#888;

}

/* ===========================
ANIMATIONEN
=========================== */

section,
.product-card,
.dessert-card,
.advantage-card,
.review-card{

opacity:0;
transform:translateY(60px);
transition:all .8s ease;

}

.show{

opacity:1 !important;
transform:translateY(0) !important;

}

.top-btn{

position:fixed;

bottom:35px;

right:35px;

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#ff8c00;

color:#fff;

font-size:24px;

cursor:pointer;

box-shadow:0 15px 30px rgba(0,0,0,.4);

opacity:0;

transition:.35s;

z-index:9999;

}

.top-btn:hover{

transform:translateY(-6px);

background:#ff7000;

}



/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-left{

padding:40px;

}

.hero-right{

margin-top:30px;

}

.hero-image{

width:100%;

max-width:650px;

}

.contact-grid{

grid-template-columns:1fr;

}

}



@media(max-width:768px){

.navbar .container{

flex-direction:column;

gap:20px;

}

.menu{

flex-direction:column;

gap:15px;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:18px;

}

.section-title h2{

font-size:36px;

}

.product-grid,

.gallery-grid,

.dessert-grid,

.review-grid,

.advantage-grid{

grid-template-columns:1fr;

}

.btn-orange,

.btn-white{

width:100%;

text-align:center;

}

.whatsapp-header{

width:100%;

text-align:center;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

}

/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:75px;

height:75px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 18px 40px rgba(0,0,0,.35);

z-index:99999;

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.floating-whatsapp:hover{

transform:scale(1.12);

}

@keyframes whatsappPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}
/* ===========================
RECHTSSEITEN (IMPRESSUM/DATENSCHUTZ)
=========================== */

.legal{

padding:160px 0 100px;

background:#101010;

min-height:100vh;

}

.legal-content h1{

font-size:44px;

margin-bottom:35px;

}

.legal-content h2{

font-size:24px;

margin:35px 0 12px;

color:#ff8c00;

}

.legal-content p{

color:#d8d8d8;

line-height:1.8;

margin-bottom:10px;

max-width:800px;

}

.legal-content a{

color:#ff8c00;

text-decoration:underline;

}
