/* bl-themes/redshorts-modern/css/style.css */

/* Montserrat-400 (Normal) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* Montserrat-700 (Bold) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* Montserrat-900 (Black) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

:root {
    --primary: #e63946; /* Ein kräftiges Rot */
    --dark: #121212;
    --light: #f1f1f1;
    --accent: #ffd700;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 { font-size: 5rem; font-weight: 900; margin: 0; letter-spacing: -2px; text-transform: uppercase; }
.hero-content p { font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.hero-content h1 {
    text-shadow: 2px 4px 10px rgba(0,0,0,0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 20px;
}
.btn:hover { transform: scale(1.05); background: #ff4d5a; }

/* Sections */
/* bl-themes/redshorts-modern/css/style.css */

.content-section { 
    padding: 50px 0; /* Vorher 100px – jetzt deutlich kompakter */
    border-bottom: 1px solid #222; 
}

#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary); /* Dein Rot-Ton */
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Initial versteckt */
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

#scroll-to-top:hover {
    transform: translateY(-5px);
    background: #ff4d5a; /* Etwas helleres Rot beim Hover */
}

@media (max-width: 600px) {
    #scroll-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

h2 { 
    font-size: 2.5rem; /* Etwas kleiner für einen moderneren Look */
    color: var(--primary); 
    margin-top: 0;     /* Entfernt den Abstand nach oben */
    margin-bottom: 20px; /* Reduziert den Abstand zum folgenden Text */
    text-transform: uppercase; 
}

.content p {
    margin-bottom: 15px; /* Kompakterer Abstand zwischen Textabsätzen */
}

/* Navbar */
.navbar { padding: 20px; position: fixed; width: 100%; z-index: 100; background: rgba(0,0,0,0.8); }
.logo { font-weight: 900; font-size: 1.5rem; }
.logo span { color: var(--primary); }

.contact-assets {
    flex-wrap: wrap; /* Lässt QR-Code und Text untereinander rutschen, wenn der Platz fehlt */
    justify-content: center;
    text-align: center;
}

.contact-assets img {
    max-width: 100%; /* Verhindert das Herausragen auf kleinen Screens */
    height: auto;
}
