/* Lokale Schriftarten */

/* Playfair Display - Light 300 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/playfair-display/playfair-display-v30-latin-300.woff2') format('woff2');
}

/* Playfair Display - Regular */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/playfair-display/playfair-display-v30-latin-regular.woff2') format('woff2');
}

/* Playfair Display - Italic */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/playfair-display/playfair-display-v30-latin-italic.woff2') format('woff2');
}

/* Playfair Display - Medium 500 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/playfair-display/playfair-display-v30-latin-500.woff2') format('woff2');
}

/* Playfair Display - SemiBold 600 */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/playfair-display/playfair-display-v30-latin-600.woff2') format('woff2');
}

/* Roboto - Light 300 */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/roboto/roboto-v30-latin-300.woff2') format('woff2');
}

/* Roboto - Regular */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto/roboto-v30-latin-regular.woff2') format('woff2');
}

/* Roboto - Italic */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto/roboto-v30-latin-italic.woff2') format('woff2');
}

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

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #f47d56;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f47d56;
    box-shadow: none;
    z-index: 1000;
}

.navbar {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000;
}

.logo_in_span {
    font-weight: 700;
    letter-spacing: -1px;

}


.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 6rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 8rem 3rem 6rem;
    align-items: flex-start;
    background-color: #f47d56;
}

.hero-content {
    padding-right: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 0;
    font-weight: 300;
    color: #000;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-sidebar {
    padding-top: 0;
}

.hero-sidebar p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #000;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image-section {
    width: 100%;
    overflow: hidden;
}

.hero-image-section img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn:hover {
    background-color: #000;
    color: #f47d56;
}

/* About Section */
.about {

    padding: 6rem 0rem 2rem;
    text-align: center;
    background-color: #fff;
}

.about-content {
    max-width: 1200px;
        margin: auto auto;
}

.about h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #000;
}

.about p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.8;
}

/* Image Gallery Section */
.image-gallery {
    background-color: #fff;
    padding: 2rem 3rem 6rem;
    width: 100%;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    /* flex-wrap: wrap; */
}

.gallery-item {
    position: relative;
    width: 180px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Secondary Hero Section */
.hero-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 4rem auto;
    padding: 4rem 3rem;
    align-items: center;
    background-color: #f47d56;
}

.hero-secondary .hero-content {
    padding: 2rem;
}

.hero-secondary h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #000;
}

/* Services Section */
.services {
    background-color: #f47d56;
    padding: 6rem 3rem;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.services-header h2 em {
    font-style: italic;
    font-weight: 400;
}

.services-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    align-items: start;
}

.service-category {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-category h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
}

.service-category p {
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-category ul li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 0.95rem;
}

.service-category ul li:last-child {
    border-bottom: none;
}

.service-image {
    margin-top: auto;
    padding-top: 2.5rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.service-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Event Types Section */
.event-types {
    max-width: 1600px;
    margin: 0 auto;
    padding: 6rem 3rem;
    background-color: #fff;
}

.event-types h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 400;
    color: #000;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    position: relative;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: #f9f9f9;
}

.event-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    z-index: 0;
}

.event-number {
    font-size: 4rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.event-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background-color: #f47d56;
    padding: 6rem 3rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #000;
}

.contact-content p {
    font-size: 1.05rem;
    color: #000;
    line-height: 1.7;
}

.contact-form {
    background-color: transparent;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000;
    background-color: transparent;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    color: #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form .btn {
    margin-top: 1.5rem;
    width: auto;
    padding: 1.1rem 3rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 6rem 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid #444;
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form .btn {
    width: auto;
    align-self: flex-start;
    border-color: #fff;
    color: #fff;
}

.newsletter-form .btn:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.footer-bottom {
    max-width: 1600px;
    margin: 4rem auto 0;
}

.footer-bottom img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    mix-blend-mode: lighten;
}

/* Impressum Section */
.impressum {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 3rem;
    border-top: 1px solid #333;
}

.impressum-content {
    max-width: 1200px;
    margin: 0 auto;
}

.impressum h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 400;
}

.impressum h4 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.impressum p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 2rem 4rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero,
    .hero-secondary {
        grid-template-columns: 1fr;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .services {
        padding: 4rem 1.5rem;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .gallery-item {
        width: 200px;
        height: 200px;
    }
    
    .event-types {
        padding: 4rem 1.5rem;
    }
    
    .event-types h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .contact-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-secondary {
        padding: 4rem 1.5rem;
    }
    
    .hero-secondary h2 {
        font-size: 2.2rem;
    }
    
    .about {
        padding: 4rem 1.5rem;
    }
    
    .about h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 120px;
        height: 120px;
    }
}
