/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #1B1B1B;
    color: #e0e0e0;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #202020;
}

::-webkit-scrollbar-thumb {
    background: #DE0912;
    border-radius: 10px;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #202020, #1B1B1B);
    padding: 0 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #DE0912;
    height: 70px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-container {
    max-width: 100%;
    margin: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-section {
    position: fixed;
    left: 20px;
    top: 20px;
    background: rgba(32, 32, 32, 0.95);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(222, 9, 18, 0.2);
    gap: 0;
    z-index: 1001;
    animation: slideInLeft 0.4s ease-out;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.navbar.scrolled .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0;
}

.navbar.scrolled .logo-img {
    border-radius: 50%;
}

.brand-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar.scrolled .brand-text {
    display: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-menu {
    position: fixed;
    right: 20px;
    top: 20px;
    background: rgba(32, 32, 32, 0.95);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(222, 9, 18, 0.2);
    gap: 4px;
    z-index: 1001;
    animation: slideInRight 0.4s ease-out;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 25px;
    white-space: nowrap;
}

.navbar.scrolled .nav-link {
    padding: 10px 12px;
    gap: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    background: transparent;
}

.navbar.scrolled .nav-link:hover {
    background: rgba(222, 9, 18, 0.2);
    transform: scale(1.1);
}

.navbar.scrolled .nav-link span {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #DE0912;
    transition: width 0.2s ease-out;
    opacity: 0;
}

.navbar.scrolled .nav-link::after {
    display: none;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

.nav-link:hover {
    color: #DE0912;
}

.nav-link.active {
    color: #DE0912;
}

.navbar.scrolled .nav-link.active {
    background: rgba(222, 9, 18, 0.3);
    color: #DE0912;
}

.nav-link.active::after {
    width: 100%;
    background-color: #DE0912;
    opacity: 1;
}

.nav-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.navbar.scrolled .nav-icon {
    font-size: 18px;
}

.navbar.scrolled .nav-link::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(32, 32, 32, 0.95);
    color: #DE0912;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1003;
    border: 1px solid rgba(222, 9, 18, 0.2);
}

.navbar.scrolled .nav-link:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #e0e0e0;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover span {
    background: #DE0912;
}

/* Hero Content Section */
.content {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll Content - NEU */
.scroll-content {
    min-height: auto;
    background: linear-gradient(135deg, #202020, #1B1B1B);
}

/* Diagonal Lines */
.diagonal-line {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.diagonal-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.diagonal-line.bottom-line::before {
    transform: skewY(-3deg);
    transform-origin: top right;
}

.abstand {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    height: 50px;
}

/* Image Gallery */
.image-gallery {
    position: relative;
    background: linear-gradient(135deg, #202020, #1B1B1B);
    padding: 4rem 2rem;
    transform: skewY(-3deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(222, 9, 18, 0.3);
    transition: all 0.4s ease;
    transform: skewY(3deg);
    aspect-ratio: 4/3;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: skewY(3deg) translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(222, 9, 18, 0.5);
    border-color: #DE0912;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(222, 9, 18, 0.2) 0%, rgba(222, 9, 18, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.about-content h2 {
    color: #DE0912;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-item {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.9), rgba(27, 27, 27, 0.9));
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 2px solid #1B1B1B;
    transition: all 0.3s;
    position: relative;
}

.about-item:hover {
    border-color: #DE0912;
}

.about-item h3 {
    color: #DE0912;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Discord Section */
.discord-section {
    max-width: 1200px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
}

.discord-container {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.95), rgba(27, 27, 27, 0.95));
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #DE0912;
    box-shadow: 0 20px 60px rgba(222, 9, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-icon {
    font-size: 5rem;
    color: #DE0912;
    margin-bottom: 1.5rem;
}

.discord-container h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discord-container p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #DE0912, #b00710);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(222, 9, 18, 0.4);
}

.discord-btn:hover {
    background: linear-gradient(135deg, #ff0a15, #DE0912);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(222, 9, 18, 0.6);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #202020, #1B1B1B);
    padding: 4rem 2rem 0;
    border-top: 2px solid #DE0912;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: #DE0912;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: #DE0912;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #DE0912;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li i {
    width: 20px;
    color: #DE0912;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #DE0912;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #202020, #1B1B1B);
    border-radius: 50%;
    color: #DE0912;
    border: 2px solid #DE0912;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #DE0912;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(222, 9, 18, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #DE0912;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #202020, #1B1B1B);
        border-left: 2px solid #DE0912;
        flex-direction: column;
        padding: 2rem 0;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 1.2rem 2rem;
        width: 100%;
        border-bottom: 1px solid rgba(222, 9, 18, 0.2);
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .discord-container h2 {
        font-size: 2rem;
    }

    .diagonal-line {
        height: 60px;
    }

    .image-gallery {
        padding: 2rem 1rem;
        transform: skewY(0deg);
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        transform: skewY(0deg) !important;
    }

    .gallery-item:hover {
        transform: translateY(-5px) scale(1.03) !important;
    }
}

@media (max-width: 480px) {
    .diagonal-line {
        height: 40px;
    }

    .image-gallery {
        padding: 1.5rem 0.5rem;
    }
}

/* Hero Content Section */
.content {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.712);
    z-index: 1;
}

.slideshow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.overlay-icon {
    width: 450px;
    height: auto;
    margin-bottom: 10px;
    animation: fadeInScale 1s ease-out;
}

.overlay-text {
    font-size: 50px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.overlay-text .blank {
    color: rgb(219, 21, 22);
}

.overlay-text .rp {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.subtext {
    font-size: 24px;
    color: white;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COOKIE BANNER STYLES ===== */

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.98), rgba(20, 20, 20, 0.98));
    border-top: 3px solid #DE0912;
    box-shadow: 0 -10px 40px rgba(222, 9, 18, 0.3);
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-out;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 3.5rem;
    color: #DE0912;
    animation: pulse 2s infinite;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #DE0912, #b00710);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #ff0a15, #DE0912);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(222, 9, 18, 0.5);
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cookie-content {
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }
    
    .cookie-icon i {
        font-size: 2.5rem;
    }
    
    .cookie-text h3 {
        font-size: 1.3rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .cookie-icon i {
        font-size: 2rem;
    }
    
    .cookie-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
}
