/* ========================= */
/* RESET */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e9e5dd;
    color: #111;
}




/* OVERLAY */
.hero-overlay{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
}


/* TITLE */
.hero-title{
    font-family:'Playfair Display', serif;
    font-size:90px;
    color:white;
    letter-spacing:6px;

    opacity:0;
    transform:translateY(40px);
    animation:heroFade 1.8s ease forwards;
}


/* ANIMATION */
@keyframes heroFade{
    0%{
        opacity:0;
        transform:translateY(40px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}
/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar{
    height:60px;
    padding:20px 10%;
    position:sticky;
    top:0;
    background:#e9e5dd;
    z-index:1000;
    display:flex;
    justify-content: center;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:50px;
    width:auto;
    display:flex;
    justify-content: left;
}

.nav-menu{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-menu a{
    text-decoration:none;
    color:black;
    position:relative;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:black;
    left:0;
    bottom:-4px;
    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-menu a.active {
  color: #a68f70;       /* schönes Beige */
 font-weight: 600;      /* etwas fetter */
  transform: scale(1.05); /* minimaler Aufpop-Effekt */
 transition: all 0.2s ease;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: black;
    transition: all 0.3s ease;
}

/* ========================= */
/* GENERAL SECTION */
/* ========================= */
.section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 10%;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.olaf {
    position: relative;   /* Damit Text über dem Video liegt */
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Video füllt die ganze Hero-Section */
    z-index: -1;         /* Video liegt hinter dem Text */
}

.olaf {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

/* HERO */

.hero{

height:75vh;


position:relative;

display:flex;

align-items:center;

justify-content:center;

}


/* OVERLAY */

.hero-overlay{

position:absolute;

display:flex;

align-items:center;

justify-content:center;

width:100%;

height:100%;

}


/* TITLE */

.hero-title{

font-family:'Playfair Display', serif;

font-size:90px;

color:white;

letter-spacing:6px;

opacity:0;

transform:translateY(40px);

animation:heroFade 1.8s ease forwards;

}

/* ========================= */
/* BEAUTY SECTION */
/* ========================= */

.beauty-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

    /* NEU: verhindert volle Bildschirmhöhe */
    padding: 60px 0;
    max-width: 1100px;
    margin: 0 auto;
    height: 70vh;
}

.beauty-images {
    display: flex;
    gap: 20px;
}



/* TEXT */
.strip-left{
display:flex;
flex-direction:column;
justify-content:center;
padding-right:60px;
}
.strip-left h1{
font-size:46px;
font-weight:500;
line-height:1.2;
margin-bottom:20px;
font-family:'Playfair Display', serif;
 
}
.strip-left span{
font-style:italic;
color:#f0b1b6;
}



.img-box {
    width: 250px;
    height: 350px;
    object-fit: cover;
}

/* ========================= */
/* SPLIT SECTION */
.split {
    display: flex;
    padding: 0;
}

.split-left,
.split-right {
    width: 50%;
    height: 100vh;
}

.split-left {
    background: url("Assets/pictures/morning\ strand\ mau.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: white;
}

.split-content h2 {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 48px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
    margin-bottom: 20px;
}




/* ========================= */
/* BUTTON STYLE green*/
/* ========================= */

button{
margin-top:30px;
padding:15px 35px;
border:none;
border-radius:30px;
background: linear-gradient(135deg, #2f5d50, #1b3932);
color:white;
cursor:pointer;
transition:.3s;
}



/* ========================= */
/* BUTTON STYLE white */
/* ========================= */
.butwi {
    padding: 10px 25px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
}

.butwi:hover {
    background: white;
    color: #a68f70;
    transform: scale(1.05);
}



@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.split-content button {
    padding: 10px 25px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: 'Georgia', serif;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
}

.split-content button:hover {
    background: white;
    color: #a68f70;
    transform: scale(1.05);
}

.split-right {
    background: url("Assets/pictures/palme.jpg") center/cover no-repeat;
}

/* ========================= */
/* FOOTER */
.footer{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:80px 10%;
    border-top:1px solid #ddd;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links a{
    text-decoration:none;
    color:#555;
}

footer p{
    color:#555;
}

.footer-logo img {
    width: 120px; /* Größe anpassen */
    height: auto;
}

.instagram{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

.insta-icon{
    width:40px;
    height:40px;
    cursor:pointer;
    transition:.3s;
}

.insta-icon:hover{
    transform:scale(1.1);
}

.footer-logo,
.instagram{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* LIFESTYLE */

.lifestyle{
text-align:center;
padding:120px 10%;
}

.lifestyle h2{
letter-spacing:3px;
font-size:32px;
margin-bottom:10px;
}

.lifestyle p{
color:#666;
}


/*Text section split*/
.split-text {
   flex: 1;
   display:flex;
flex-direction:column;
justify-content:center;
padding-right:60px;
   
}

.split-text h2 {
  font-size:46px;
font-weight:500;
line-height:1.2;
margin-bottom:20px;
font-family:'Playfair Display', serif;
}


.pink{
font-style:italic;
color:#f0b1b6;
}

.split-text p{
color:#555;
line-height:1.6;
margin-bottom:25px;
}

/* =========================
   LIFESTYLE QUOTE  */
.quote {
    display: inline-block;
    padding: 15px 25px;
    border: 2px solid white;
    background: transparent;
    color: white;

    font-family: 'Georgia', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.6;

    transition: all 0.3s ease;
}

.quote:hover {
    background: white;
    color: #a68f70;
    transform: scale(1.05);
}


/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 900px) {

    /* =========================
       GENERAL
    ========================= */
    .section {
        padding: 60px 5%;
    }

    body {
        overflow-x: hidden;
    }

    /* =========================
       NAVBAR
    ========================= */
    .navbar {
        padding: 15px 5%;
        height: 60px;
    }

    .nav-container {
        width: 100%;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;

        flex-direction: column;
        gap: 20px;

        background: #e9e5dd;
        padding: 25px 0;

        text-align: center;

        /* hidden by default */
        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition: all 0.35s ease;
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    /* =========================
       HERO
    ========================= */
    .hero-title{
    font-size:50px;
letter-spacing:3px;
  }

    .hero {
        height: 60vh;
    }

    /* =========================
       OLAF VIDEO SECTION
    ========================= */
    .olaf {
        height: 70vh;
    }

    /* =========================
       BEAUTY SECTION
    ========================= */
    .beauty-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 40px 5%;
    }

    .strip-left {
        padding-right: 0;
        align-items: center;
    }

    .strip-left h1 {
        font-size: 32px;
    }

    .beauty-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .img-box {
        width: 180px;
        height: 250px;
    }

    /* =========================
       SPLIT SECTION
    ========================= */
    .split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        width: 100%;
        height: 50vh;
        padding: 40px 5%;
    }

    .split-content h2 {
        font-size: 32px;
    }

    button,
    .split-content button {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* =========================
       LIFESTYLE
    ========================= */
    .lifestyle {
        padding: 80px 5%;
    }

    .lifestyle h2 {
        font-size: 24px;
    }

    .lifestyle p {
        font-size: 14px;
    }

    /* =========================
       FOOTER (WICHTIG!)
    ========================= */
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 60px 5%;
    }

    .footer-links {
        align-items: center;
    }

    .newsletter input {
        width: 100%;
        max-width: 300px;
    }

    .newsletter button {
        width: 100%;
        max-width: 300px;
    }

    .instagram {
        align-items: center;
    }

    .footer-logo img {
        width: 100px;
    }
}

/* ========================= */
/* SMALL PHONES */
/* ========================= */
@media (max-width: 480px) {

    .hero-title{
    font-size:50px;
letter-spacing:3px;
  }

    .strip-left h1 {
        font-size: 26px;
    }

    .img-box {
        width: 140px;
        height: 200px;
    }

    .split-content h2 {
        font-size: 24px;
    }
}