/* Base Typography */
p {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1, h2, h3, h4 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Quote specific typography */
.quote {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-style: italic;
}

.author {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

body {
    background-color: rgb(71, 71, 71); /* Hintergrund */
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background: url('skyline.jpg') center center / cover no-repeat;
    z-index: -1;
    filter: grayscale(100%);
}
 
/* Die Welle */
.welle {
    position: relative;
    z-index: 1;
    line-height: 0;
    bottom: -1px;
}
 
/* Der Content */
.content {
    position: relative;
    width: 110%;
    z-index: 2;
    background-color: #474747;
    color: white;
    padding: 100px 20px;
    min-height: 600vh; /* Nur zum Testen scrollbarer Inhalt */
}
.hero-placeholder {
    height: 50vh;
}

@media (max-width: 768px) {
    model-viewer {
        display: none;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.section {
    scroll-margin-top: 100px;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* Animation für Hero-Bereich */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.floating {
    animation: float 3s ease-in-out infinite;
}
/* Dark Mode Stile */
.dark .bg-gray-50 {
    background-color: #111827 !important;
}
.dark .bg-white {
    background-color: #1f2937 !important;
}
.dark .text-gray-600, 
.dark .text-gray-700,
.dark .text-gray-800 {
    color: #e5e7eb !important;
}
.dark .bg-gray-200 {
    background-color: #374151 !important;
}
.dark .bg-gray-100 {
    background-color: #1f2937 !important;
}
.dark .bg-blue-100 {
    background-color: #1e40af !important;
}
.dark .bg-purple-100 {
    background-color: #5b21b6 !important;
}
.dark .bg-green-100 {
    background-color: #065f46 !important;
}
.dark .bg-yellow-100 {
    background-color: #92400e !important;
}
.dark .bg-pink-100 {
    background-color: #831843 !important;
}
.dark .text-blue-800,
.dark .text-purple-800,
.dark .text-green-800,
.dark .text-yellow-800,
.dark .text-pink-800 {
    color: #f3f4f6 !important;
}
.dark .border-gray-300 {
    border-color: #4b5563 !important;
}
.dark .bg-gray-900 {
    background-color: #030712 !important;
}
.dark .text-gray-400 {
    color: #9ca3af !important;
}
.dark .border-gray-800 {
    border-color: #1f2937 !important;
}
.profile-image {
    width: 256px !important;
    height: 256px !important;
    object-fit: cover !important;
    display: block !important;
    box-shadow: 4px 5px 44px 0px rgba(0,0,0,0.38);
    -webkit-box-shadow: 4px 5px 44px 0px rgba(0,0,0,0.38);
    -moz-box-shadow: 4px 5px 44px 0px rgba(0,0,0,0.38);
}

/* Quotes Section Styles */
.quotes-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    min-height: 400px;
    background-color: #f9fafb;
    width: 100%;
}

.quotes-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotes-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-card {
    position: absolute;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.quote-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.quote-card.previous {
    transform: translateX(-100%);
}

.quote {
    width: 100%;
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: rgba(17, 12, 46, 0.15) 5px 48px 100px 5px,
                rgba(17, 12, 46, 0.1) 15px 0px 30px -5px;
}

.author {
    font-size: 1.1em;
    color: #6c757d;
    font-weight: bold;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.1) 0px 10px 20px 0px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #93c5fd;
}

.dot.active {
    background-color: #3b82f6;
    transform: scale(1.2);
}

/* Dark Mode für Quotes Section */
.dark .quotes-section {
    background-color: #111827;
}

.dark .quote {
    background: rgba(31, 41, 55, 0.9);
    color: #e5e7eb;
    box-shadow: rgba(0, 0, 0, 0.3) 5px 48px 100px 5px,
                rgba(0, 0, 0, 0.2) 15px 0px 30px -5px;
}

.dark .author {
    color: #9ca3af;
    background: rgba(31, 41, 55, 0.9);
}

.dark .dot {
    background-color: #4b5563;
}

.dark .dot:hover {
    background-color: #60a5fa;
}

.dark .dot.active {
    background-color: #3b82f6;
}
