/*!
 * LogikAkademie Custom Theme
 * Based on Bootstrap 5.0.2
 */

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #9A7F53;
    --bs-secondary: #887249;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #3D3D3D;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #9a7f53;
    text-decoration: none;
}

a:hover {
    color: #7b6642;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1140px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4, .col-md-6, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

.text-center { text-align: center; }
.text-md-end { text-align: right; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}



.btn-secondary {
    color: #fff;
    background-color: #887249;
}

.btn-secondary:hover {
    background-color: #6d5b3a;
    color: #fff;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.25rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header */
header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(61, 61, 61, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
}

.color-logo {
    display: none;
}

.white-logo {
    display: block;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #9a7f53;
    text-decoration: none;
}

.mobile-nav {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

#expandedNav {
    display: none;
    background-color: #3D3D3D;
    padding: 2rem 0;
}

#expandedNav.show {
    display: block;
}

.exp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.x-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.drop-nav {
    flex-direction: column;
}

.drop-nav .nav-item {
    margin-left: 0;
    margin-bottom: 1rem;
}

.nav-spacer {
    height: 80px;
}

@media (max-width: 1199px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Hero Section */
.hero-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.script-accent {
    font-family: 'Brush Script MT', cursive;
    font-weight: 400;
    text-transform: none;
    font-size: 3.5rem;
    display: inline-block;
    margin-right: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.button-module {
    margin-top: 2rem;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-list li {
    display: inline-block;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .script-accent {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Two Column Sections */
.basic-two-column {
    padding: 5rem 0;
}

.basic-two-column .text-col {
    padding: 2rem;
}

.basic-two-column .image-col {
    padding: 1rem;
}

.left-border {
    border-left: 4px solid #9a7f53;
    padding-left: 1.5rem;
}

.align-items-center {
    align-items: center;
}

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 768px) {
    .order-md-1 { order: 1; }
    .order-md-2 { order: 2; }
}

/* Full Width Blocks */
.basic-full-width-block {
    padding: 5rem 0;
}

.dark-band {
    background-color: #3D3D3D;
    color: #fff;
}

.dark-band h2 {
    color: #fff;
}

.dark-band a {
    color: #9a7f53;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: #fff;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #9a7f53;
    border-width: 3px;
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #9a7f53;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #3D3D3D;
}

.pricing-card .duration {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9a7f53;
    margin: 1.5rem 0;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card .features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-note {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: #9a7f53;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #3D3D3D;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Social Feed */
.social-feed {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-icons a {
    color: #9a7f53;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #7b6642;
    transform: scale(1.1);
    text-decoration: none;
}

/* Footer */
.site-footer {
    background-color: #3D3D3D;
    color: #fff;
    padding: 4rem 0 2rem;
}

.site-footer h3 {
    color: #9a7f53;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #9a7f53;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.sub-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin: 0;
    color: #ccc;
}

.terms-privacy {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.terms-privacy li {
    display: inline-block;
}

.btn-primary {
    color: #fff !important;
    background-color: #9a7f53;
}

.btn-primary:hover {
    background-color: #7b6642;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .terms-privacy {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3D3D3D;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #9a7f53;
}

.cookie-content button {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content button {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #cdbfa9;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(154, 127, 83, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Legal Content Pages */
.legal-content {
    padding: 5rem 0;
    background-color: #fff;
}

.legal-content h1 {
    margin-bottom: 2rem;
    color: #3D3D3D;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #3D3D3D;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3D3D3D;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #9a7f53;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #7b6642;
}

.legal-content em {
    color: #6c757d;
    font-style: italic;
}

.legal-content strong {
    font-weight: 600;
    color: #3D3D3D;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.map-placeholder {
    background-color: #e0e0e0;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    flex-direction: column;
}

/* Contact Info Styles */
.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info strong {
    color: #3D3D3D;
    display: block;
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

@media (min-width: 1200px) {
    .d-xl-flex { display: flex !important; }
    .d-xl-none { display: none !important; }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}
