
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

:root{
    --bg:#0f0f10;
    --bg2:#181818;
    --panel:#222;
    --gold:#d4af37;
    --gold-light:#f5d97a;
    --text:#f2f2f2;
    --text-soft:#bfbfbf;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Montserrat',sans-serif;
    line-height:1.7;
}

a{
    color:var(--gold);
    text-decoration:none;
}

a:hover{
    color:var(--gold-light);
}

h1{
    font-size:4rem;
    font-weight:800;
}

h2{
    font-size:2rem;
    color:var(--gold);
    margin-bottom:25px;
}

p{
    color:var(--text-soft);
}

.topnav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;

    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;

    padding:0 20px;

    background:rgba(20,20,20,0.92);
    border-bottom:1px solid rgba(212,175,55,0.2);

    z-index:9999;
}

.logo{
    color:var(--gold);
    font-size:0.8rem;
    font-weight:600;
    letter-spacing:1px;
}

.menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
}

.menu a{
    color:#f2f2f2;
    font-size:0.82rem;
    text-transform:uppercase;
}

.lang-buttons{
    display:flex;
    gap:4px;
    justify-self:end;
}

.topnav button{
    padding:2px 6px;
    font-size:0.65rem;
    font-weight:700;
}

.hero{
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
        url("../../images/bg.jpg");

    background-size:cover;
    background-position:center;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding-top:60px;
}

.hero h1{
    color:var(--gold);
}

section{
    padding:80px 25px;
    scroll-margin-top:70px;
}

section:nth-child(even){
    background:var(--bg2);
}

.profile-image{
    max-width:500px;
    width:100%;
    display:block;
    height:auto;
    object-fit:contain;
    margin:0 auto 40px;
    border-radius:20px;
    border:2px solid rgba(212,175,55,.3);
}

.album-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    max-width:1300px;
    margin:40px auto;
}

.album-card{
    display:block;
    background:var(--panel);
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:border-color 0.3s, transform 0.3s;
}

.album-card:hover{
    border-color:rgba(212,175,55,.6);
    transform:translateY(-4px);
}

.album-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.album-card .content{
    padding:20px;
}

.album-card h3{
    color:var(--gold);
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

.social-links a{
    background:var(--panel);
    padding:12px 20px;
    border-radius:10px;
}

footer{
    text-align:center;
    line-height:1.8;
}

/* Hero Animationen */
@keyframes slideFromLeft{
    from{ opacity:0; transform:translateX(-300px); }
    to{   opacity:1; transform:translateX(0); }
}

@keyframes slideFromRight{
    from{ opacity:0; transform:translateX(300px); }
    to{   opacity:1; transform:translateX(0); }
}

.hero h1{
    animation: slideFromLeft 0.9s ease both;
}

.hero h2{
    animation: slideFromRight 0.9s ease 0.3s both;
}

.hero p{
    animation: slideFromRight 0.9s ease 0.6s both;
}

@media(max-width:900px){

    .topnav{
        grid-template-columns:1fr;
        height:auto;
        gap:8px;
        padding:10px;
    }

    .menu{
        flex-wrap:wrap;
    }

    .lang-buttons{
        justify-self:center;
    }

    h1{
        font-size:2.5rem;
    }
}
