/* Reset und Basis-Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

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

/* Header */
.header {
    background-color: #000;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo a:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav .btn {
    text-decoration: none;
    color: #fff;
    background-color: #BC2F03;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    white-space: nowrap;
}

.nav .btn-primary {
    background-color: #1e3963;
}

.nav .btn:hover {
    background-color: #9a2502;
    transform: translateY(-2px);
}

.nav .btn-primary:hover {
    background-color: #2a4a7a;
    transform: translateY(-2px);
}

.nav .btn-secondary {
    background-color: transparent;
    color: #BC2F03;
    border: 2px solid #BC2F03;
    margin-right: 1rem;
}

.nav .btn-secondary:hover {
    background-color: #BC2F03;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 0;
    text-align: center;
}

.hero-header-image {
    width: 100%;
    margin-bottom: 0;
    height: 50vh;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.hero-header-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    padding: 1rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #000;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0,5rem;
    color: #000;
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-image {
    margin-top: 3rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #000;
    line-height: 0;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border: none;
    outline: none;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #BC2F03;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    user-select: none;
    padding: 20px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    color: #BC2F03;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Contact Section */
.contact {
    padding: 1rem 0;
}

.florian-image {
    margin-bottom: 2rem;
}

.florian-img {
    width: 100%;
    height: 900px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.florian-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info, .bank-info, .vat-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #BC2F03;
}

.contact-info h3, .bank-info h3, .vat-info h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p, .bank-details p, .vat-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-details strong, .bank-details strong, .vat-details strong {
    color: #000;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.services h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #BC2F03;
}

.service-text {
    font-size: 1.2rem;
    color: #fff;
}



.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #BC2F03;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.info-card h3 {
    color: #000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p, .info-card li {
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 1rem !important;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.info-card li:before {
    content: "✓";
    color: #BC2F03;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.application-list li {
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.application-list li:before {
    content: "✓";
    color: #BC2F03;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}


/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3963 0%, #1a1a1a 100%);
    color: #fff;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #BC2F03;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #BC2F03;
    border: 2px solid #BC2F03;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #BC2F03;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer p {
    color: #999;
    margin: 0;
}


.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #BC2F03;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-link:hover {
    color: #BC2F03;
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
}

/* Link Styling */
a[href^="tel:"], a[href^="mailto:"], a[href^="https:"] {
    color: #BC2F03;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover, a[href^="https:"]:hover {
    color: #9a2502;
    text-decoration: underline;
}


/* Main Content */
.main-content {
    padding: 4rem 0;
    background-color: #fff;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #BC2F03;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
}

.content-section p {
    color: #555;
    margin-bottom: 1rem;
}

.content-section ul {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.application-list {
    list-style: none;
    padding-left: 0;
}

.application-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header-image {
        height: 30vh;
        min-height: 150px;
        max-height: 250px;
    }
    
    .hero-header-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        min-height: 220px;
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        order: 1;
    }
    
    .nav {
        order: 2;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        width: auto;
    }
    
    .nav .btn {
        min-width: auto;
        width: auto;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .nav .btn-secondary {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .florian-img {
        height: 600px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-header-image {
        height: 25vh;
        min-height: 120px;
        max-height: 200px;
    }
    
    .hero-header-img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-info, .bank-info, .vat-info, .info-card {
        padding: 1.5rem;
    }
    
    .nav .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .florian-img {
        height: 450px;
    }
    
    .prev-btn, .next-btn {
        font-size: 40px;
        padding: 10px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .contact-grid, .info-grid, .cta-box {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover-Effekte */
.contact-info:hover, .bank-info:hover, .vat-info:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.form-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #BC2F03;
}

.form-info h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-info p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details h4 {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #BC2F03;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BC2F03;
    box-shadow: 0 0 0 3px rgba(241, 148, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #BC2F03;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.success-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.success-content h3 {
    color: #BC2F03;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-content p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design für Kontaktformular */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .success-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .form-info,
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}

/* Equitron Page Specific Styles - Change Orange to Blue */


.equitron-page .hero-subtitle {
    color: #1e3963;
}

.equitron-page .info-card {
    border-left: 4px solid #1e3963;
}

.equitron-page .info-card li:before {
    color: #1e3963;
}

.equitron-page .application-list li:before {
    color: #1e3963;
}

.equitron-page .contact-info {
    border-left: 4px solid #1e3963;
}



.equitron-page a[href^="tel:"], 
.equitron-page a[href^="mailto:"] {
    color: #1e3963;
}

.equitron-page a[href^="tel:"]:hover, 
.equitron-page a[href^="mailto:"]:hover {
    color: #2a4a7a;
}

.equitron-page .instagram-link:hover {
    color: #1e3963;
}

.equitron-page .footer-links a:hover {
    color: #1e3963;
}

/* Equitron Text Styling */
.equitron-bold {
    font-weight: 700;
}

/* Equitron Image Section */
.equitron-image-section {
    padding: 3rem 0;
}

.equitron-image-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.equitron-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.equitron-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Responsive Equitron Image */
@media (max-width: 768px) {
    .equitron-image-section {
        padding: 2rem 0;
    }
    
    .equitron-image {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .equitron-image-section {
        padding: 1.5rem 0;
    }
}

