/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:wght@400;700&display=swap');

/* BODY + Zentrierung */
body {
    margin: 0;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertikal zentriert */
    align-items: center;      /* horizontal zentriert */
    text-align: center;
    position: relative;
}

/* Container als Card */
.container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    padding: 40px 30px;
    background: rgba(10,10,10,0.9);
    border: 2px solid #fff;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.container:hover {
    box-shadow: 0 0 60px rgba(255,255,255,0.2);
    transform: scale(1.01);
}

/* Logo */
.logo-container, .subtitle, nav, .language-selector, section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.logo {
    font-family: 'Audiowide', sans-serif;
    font-size:5rem; font-weight:bold; letter-spacing:2px;
    background: linear-gradient(90deg, #fff, #aaa, #fff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    margin-bottom: 20px;
    position: relative;
}
@keyframes shine { 0%{background-position:-200% 0;} 100%{background-position:200% 0;} }

.logo::before {
    content:'AXOMAT1C';
    position:absolute; top:0; left:0;
    width:100%; height:100%;
    color:#fff;
    z-index:-1;
    -webkit-text-stroke:1px #fff;
    opacity:0.3;
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {0%{opacity:0.3;transform:scale(0.95);}100%{opacity:0.7;transform:scale(1.05);}}

/* Subtitles */
.subtitle{font-size:1.5rem;margin:10px 0;}

/* Navigation */
nav{margin:20px 0;}
nav a{color:#eee;margin:0 15px;text-decoration:none;transition:color 0.3s;}
nav a:hover{color:#bbb;}

/* Sections */
section{
    width:100%;
    margin:40px 0;
    opacity:0;
    transform:translateY(40px);
    transition:opacity 0.8s, transform 0.8s;
    text-align:center;
}
section.visible{opacity:1;transform:translateY(0);}

/* Language Selector */
.language-selector{margin:15px 0;}
.language-selector label{font-size:0.9rem;color:#bbb;margin-right:10px;}
.language-selector select{padding:5px 10px;background:#111;color:#eee;border:1px solid #444;border-radius:5px;}

/* Hintergrund Dreiecke */
.background-triangles {
    position: fixed;
    top:0; left:0;
    width:100%;
    height:100%;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}
.triangle {
    width:0; height:0;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-bottom:17px solid rgba(255,255,255,0.2);
    position:absolute;
    opacity:0.8;
    animation: fadeOut 1s forwards;
    mix-blend-mode: screen;
}
@keyframes fadeOut {
    0% { opacity:0.8; transform: scale(1) rotate(0deg);}
    50% { opacity:0.5; transform: scale(1.5) rotate(30deg);}
    100% { opacity:0; transform: scale(2) rotate(60deg);}
}

/* Responsive */
@media screen and (max-width:600px){
  .logo{font-size:3.5rem;}
  nav a{margin:0 10px;}
}
/* Navigation Links als Boxen */
nav a {
    color: #eee;
    margin: 0 10px;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid #fff;     /* weißer Rahmen */
    border-radius: 10px;         /* abgerundete Ecken */
    transition: 0.3s;
    font-weight: 600;
    background: rgba(255,255,255,0.05); /* leicht transparent */
}

nav a:hover {
    color: #000;
    background: #fff;            /* invertiert auf Hover */
    border-color: #fff;
    transform: scale(1.05);
}
/* Externe Links / Music Links Buttons */
.external-link {
    display: inline-block;
    color: #eee;
    margin: 10px 8px;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    transition: 0.3s;
}

.external-link:hover {
    color: #000;
    background: #fff;
    transform: scale(1.05);
}
/* Externe Links / Kontakt Buttons */
.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.external-link {
    display: inline-block;
    color: #eee;
    margin: 10px 8px;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    transition: 0.3s;
}

.external-link:hover {
    color: #000;
    background: #fff;
    transform: scale(1.05);
}
/* Navigation Links horizontal */
nav {
    display: flex;
    justify-content: center;  /* horizontal zentriert */
    align-items: center;
    flex-wrap: wrap;           /* falls zu klein, umbrechen */
    gap: 15px;                 /* Abstand zwischen Links */
    margin: 20px 0;
}

nav a {
    color: #eee;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #000;
    background: #fff;
    transform: scale(1.05);
}
nav {
    display: flex;
    justify-content: flex-start;  /* linksbündig */
    align-items: center;
    gap: 15px;                   /* Abstand zwischen Links */
    margin: 20px 0;
}

nav a {
    color: #eee;
    padding: 8px 18px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #000;
    background: #fff;
    transform: scale(1.05);
}
