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

body{

font-family:'Inter',sans-serif;
background:white;
color:#333;
line-height:1.7;

}


nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 5px 8%;

    border-bottom: 2px solid #265731;
    background: white;
    backdrop-filter: blur(12px);
    z-index: 1000;

    box-sizing: border-box;
}

nav ul{

display:flex;
list-style:none;

gap:35px;

}

nav a{

text-decoration:none;

color:#265731;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:#d97706;

}



nav a{

position:relative;

}

nav a.active{
    color:#d97706;
    font-weight:600;
}

nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#d97706;
    border-radius:20px;
}



.logo{

font-size:28px;

font-family:'Playfair Display',serif;

font-weight:bold;

}

.hero{

height:580px;

background:#f4f4f4;

display:flex;

justify-content:center;

align-items:center;
    

}

.overlay{

background:url("../images/sydney3.jpg") center center/cover no-repeat;

padding:150px;

width:50%;

height:400px;

border-radius:50px;

color:black;
    
margin: 0 auto;

margin-top:120px;
    
text-align:center;

}


.overlay1{

background-color:red center center/cover no-repeat;

padding:100px;

width:50%;

height:400px;

border-radius:50px;

color:black;

margin-top:150px;

}



.button{

display:inline-block;

padding:16px 34px;

background:#d97706;

color:white;

border-radius:50px;

text-decoration:none;

transition:.3s;

}

.button:hover{

background:#b65f00;

}


.zitat {
    max-width: 640px;
    margin: 30px auto 30px;
    padding: 0 24px 0 20px;
    border-left: 5px solid #265731;
    text-align: left;
    box-sizing: border-box;
}
.zitat .zitat-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #30343a;
}
.zitat .zitat-autor {
    margin-top: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12px;
    color: #5f6265;
}
@media (max-width: 700px) {
    .zitat {
        margin: 26px 22px 24px;
        padding-left: 16px;
        border-left-width: 4px;
    }
    .zitat .zitat-text {
        font-size: 16px;
    }
    .zitat .zitat-autor {
        font-size: 12px;
    }
}


#reisen{

padding:40px 8%;

}

#reisen h2{

text-align:center;

font-size:48px;

margin-bottom:50px;

font-family:'Playfair Display';

}

.cards{

display:grid;

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

gap:40px;

}

.card{

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

background:white;

}

.card:hover{

transform:translateY(-10px);

}

.card h3{

margin-bottom:20px;

font-size:30px;

font-family:'Playfair Display';

}

footer{

padding:60px;

text-align:center;

background:#f4f4f4;

margin-top:80px;

}

.logo img{

height:70px;

width:auto;

transition:0.3s;
    
transform: translateY(8px);

}

.logo img:hover{

transform:scale(2);

}



.overlay{

max-width:700px;

}


}

.overlay1{

max-width:700px;

}

.hero-indonesien{

height:70vh;

background:url("../images/indonesien-header.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

}

.country{

max-width:1000px;

margin:auto;

padding:90px 30px;

text-align:center;

}

.country p{

font-size:20px;

line-height:1.8;

margin-top:25px;

}

.facts{

padding:100px 8%;

background:#f8f8f8;

}

.facts h2{

text-align:center;

margin-bottom:60px;

}

.facts-grid{

display:grid;

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

gap:30px;

text-align:center;

}

.facts-grid div{

background:white;

padding:35px;

border-radius:20px;

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

}



.blog-hero{

height:45vh;

background:url("../images/blog-header.jpg") center center/cover;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

color:white;

}

.blog-container{

max-width:1200px;

margin:0px auto;

padding:0 30px;

}

.post{

display:flex;

gap:40px;

margin-bottom:80px;

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.post img{

width:420px;

height:300px;

object-fit:cover;

}

.post-content{

padding:35px;

display:flex;

flex-direction:column;

justify-content:center;

}

.post-content h2{

margin:15px 0;

font-size:16px;

}

.post-content p{

line-height:1.8;

margin-bottom:25px;

}

.datum{

color:#999;

font-size:14px;

letter-spacing:1px;

text-transform:uppercase;

}

/* Hamburger zunächst ausblenden */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#265731;
}

/* Tablet und Handy */
@media (max-width:900px){

nav{
    position: absolute;
    padding:5px 25px;
    min-height: 70px;
}

.menu-toggle{
    display:block;
}

nav ul{
    position:absolute;
    top:100%;
    left:0;
    width:100%;

    display:none;
    flex-direction:column;

    background:white;
    padding:20px 0;

    border-top:1px solid #ddd;
}

nav ul.active{
    display:flex;
}

nav ul li{
    text-align:center;
    margin:15px 0;
}
}

@media(max-width:900px){

.hero{
    height:auto;
    padding-top:120px;
    padding-bottom:50px;
}

.overlay{
    width:90%;
    height:250px;
    padding-top:120px;
    margin-top:20px;
    padding:30px;
}

.hero h1{
    margin-top:180px;
}

}

.page-title{
    padding-top:120px;
    margin-bottom:50px;
    text-align:center;
}

.page-title h1{
    font-family:'Playfair Display', serif;
    font-size:28px;
    color:#265731;
    margin-bottom:15px;
}

.page-title p{
    font-size:16px;
    color:#666;
}

@media(max-width:900px){

.page-title{
    margin-top:120px;
    padding:0 20px;
}

.page-title h1{
    font-size:26px;
}

.page-title p{
    font-size:16px;
}

}


/* Reisebericht */

.article-header{

    margin-top:90px;
    text-align:center;

}

.article-header img{

    width:100%;
    max-height:500px;

    object-fit:cover;

}

.article-header h1{

    font-family:'Playfair Display',serif;
    font-size:20px;

    color:#265731;

    margin-top:35px;

}

.article{

    max-width:1100px;

    margin:auto;

    padding:50px 30px;

}

.article h2{

    font-size:20px;

    color:#265731;

    margin-top:60px;
    margin-bottom:25px;

    font-family:'Playfair Display';

}

.article p{

    font-size:16px;

    line-height:1.9;

    margin-bottom:40px;

}

.gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-bottom:50px;

}

.gallery img{

    width:100%;
    height:280px;

    object-fit:contain;

    background:#f5f5f5;

    border-radius:15px;

    transition:.3s;

}

.gallery img:hover{

    transform:scale(2.03);

}

@media(max-width:900px){

.gallery{

grid-template-columns:repeat(2,1fr);

}

.article-header h1{

font-size:20px;

}

.article{

padding:30px 20px;

}

.article p{

font-size:16px;

}

}

/* Beiträge auf Smartphones */
@media (max-width:900px){

    .post{
        flex-direction: column;
        gap:0;
    }

    .post img{
        width:100%;
        height:220px;
    }

    .post-content{
        padding:25px;
    }

    .post-content h2{
        font-size:20px;
    }

    .button{
        align-self:flex-start;
        margin-top:10px;
    }

}

/* =========================================================
   STARTSEITE – sauberer Aufbau
   ========================================================= */

/* Bildbereich */
.hero{
    height:580px;
    background:#f4f4f4;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* Zitat unter dem Bild */
.zitat{
    max-width:640px;
    margin:30px auto;
    padding:0 24px 0 20px;
    border-left:5px solid #265731;
    text-align:left;
    box-sizing:border-box;
}

.zitat .zitat-text{
    font-family:'Inter', Arial, sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.45;
    color:#30343a;
}

.zitat .zitat-autor{
    margin-top:12px;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:12px;
    color:#5f6265;
}

/* Der komplette Bereich von Willkommen bis zu den Reisen */
.home-content{
    background:#f1f1f1;
    padding-top:20px;
    padding-bottom:20px;
}

/* Willkommenstext */
.welcome{
    width:min(900px, 90%);
    margin:0 auto;
    text-align:center;
}

.welcome h1{
    margin:0 0 20px;
    font-size:22px;
    line-height:1.2;
    font-family:'Inter', sans-serif;
    color:#292d32;
}

.welcome  p{
    max-width:780px;
    margin:0 auto 30px;
    font-size:14px;
    line-height:1.8;
    color:#333;
}

.welcome .button{
    margin:5px auto 35px;
}

/* Hinweis */
.hinweis{
    max-width:850px;
    margin:0 auto;
    font-size:14px;
    line-height:1.7;
    color:#444;
}

.hinweis strong{
    display:block;
    margin-bottom:5px;
}

.hinweis p{
    margin:0;
}

/* Reisen bleibt im gleichen grauen Bereich */
#reisen{
    width:min(1400px, 84%);
    margin:0 auto;
    padding:80px 0 0;
    background:transparent;
}

#reisen h2{
    text-align:center;
    font-size:42px;
    margin:0 0 45px;
    font-family:'Playfair Display', serif;
    color:#292d32;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    background:white;
}

@media(max-width:900px){
    .hero{
        height:auto;
        min-height:390px;
        padding-top:110px;
        padding-bottom:40px;
    }

    .overlay{
        width:90%;
        height:250px;
        margin-top:20px;
        padding-top:110px;
        padding:30px;
    }

    .zitat{
        margin:25px 22px 30px;
        padding-left:16px;
        border-left-width:4px;
    }

    .zitat .zitat-text{
        font-size:16px;
    }

    .home-content{
        padding-top:20px;
        padding-bottom:20px;
    }

    .welcome{
        width:90%;
    }

    .welcome h1{
        font-size:30px;
    }

    .welcome > p{
        font-size:16px;
        line-height:1.7;
    }

    #reisen{
        width:90%;
        padding-top:60px;
    }

    #reisen h2{
        font-size:32px;
        margin-bottom:30px;
    }
}

/* ==========================================
   MOBILE: Abstand zur festen Navigation
   ========================================== */

@media (max-width: 900px) {

    .hero {
        margin-top: 105px;
        padding-top: 0;
    }

    .overlay {
        margin-top: 120px;
        padding: 0;
    }

}

/* ================================
   ROUTENKARTE
   ================================*/

.route-map {
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.route-map img {
    display: block;
    width: 100%;
    height: auto;
}

.route-map-text {
    padding: 30px 35px 35px;
    text-align: center;
}

.route-map-text h2 {
    margin: 0 0 8px;
    font-size: 16px;
}

.route-map-text p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
}

/* ================================
   kleine Flagge
   ================================*/


.flag {
    width:38px;
    height:25px;
    display:inline-block;
    vertical-align:middle;
    margin-left:8px;
    border:1px solid #d6d6d6;
    border-radius:2px;
    box-sizing:border-box;
}