/* =========================================
   1. RESET & BASIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    background-color: #1e4d58; 
}

/* =========================================
   2. BODY & HINTERGRUND
   ========================================= */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    
    position: relative;
    padding-bottom: 75px;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url('../img/bg.jpg');
    
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    animation: breathe 30s ease-in-out infinite alternate;
    
    z-index: -10;
}

/* =========================================
   3. CONTAINER
   ========================================= */
div.main {
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    
    width: 100%; /* Volle Breite nutzen */
    max-width: 800px; /* Mehr Platz für die breite Schrift */
    height: auto;
    
    padding-bottom: 80px; 
    
    position: relative;
    z-index: 10;
    
    opacity: 0;
    animation: slideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* =========================================
   4. TITEL (DER "LUXURY LOOK")
   ========================================= */
div.main section.info {
    margin: 0;
}

div.main section.info h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    line-height: 1.4;
    margin-right: -12px;
    
    color: #2F363A; 
    
    /* Verstärkter Glow, damit man den Text auf dem echten Foto gut sieht */
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 
                 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Icons (falls vorhanden) */
div.main section.links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.3s;
}
div.main section.links a svg {
    height: 26px; /* Etwas filigraner */
    width: auto;
    filter: drop-shadow(0 1px 0 rgba(255,255,255,0.4));
}
div.main section.links a svg path {
    fill: #2F363A; 
    transition: transform 0.3s ease;
}
div.main section.links a:hover {
    transform: scale(1.1);
}

/* =========================================
   5. FOOTER (Weiß & Unten)
   ========================================= */
footer {
    width: 100%;
    text-align: center;
    
    font-size: 10px;        /* Noch etwas kleiner und feiner */
    font-weight: 400;
    letter-spacing: 4px;    /* Sehr breit */
    text-transform: uppercase;
    
    color: rgba(255, 255, 255, 0.85); 
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    
    height: 60px;
    line-height: 60px;
    
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* =========================================
   6. ANIMATIONEN
   ========================================= */
@media screen and (max-height: 650px) {
    body { display: block; padding-top: 40px; }
    div.main { margin: 0 auto 40px auto; }
    footer { position: relative; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -1%); }
}