:root {
    --primary-color: #BD8800;;
    --primary-dark: #643B30;
    --secondary-color: #f9f7f4;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/inter-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v19-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/inter-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-dark);
            color: var(--white);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .back-to-top:active {
            transform: translateY(-1px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }


        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            background: var(--pure-primary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background: var(--pure-gold);
            transform: translateY(-2px);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }




        /* Custom Offcanvas - Right Slide */
        .offcanvas-end {
            width: 350px;
            background: var(--secondary-color);
            border: none;
            box-shadow: -10px 0 30px rgba(0,0,0,0.3);
            z-index: 9999;
        }

        .offcanvas-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        .btn-close {
        background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;!important;
        }

        .offcanvas-title {
            color: var(--primary-dark);
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .btn-close {
            border-radius: 50%;
            opacity: 1;
            width: 40px;
            height: 40px;
            transition: all 0.3s ease;
        }

        .offcanvas-body {
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        /* Menu Items */
        .offcanvas-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-nav-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 0.6s ease forwards;
        }

        .offcanvas-nav-item:nth-child(1) { animation-delay: 0.1s; }
        .offcanvas-nav-item:nth-child(2) { animation-delay: 0.2s; }
        .offcanvas-nav-item:nth-child(3) { animation-delay: 0.3s; }
        .offcanvas-nav-item:nth-child(4) { animation-delay: 0.4s; }
        .offcanvas-nav-item:nth-child(5) { animation-delay: 0.5s; }
        .offcanvas-nav-item:nth-child(6) { animation-delay: 0.6s; }
        .offcanvas-nav-item:nth-child(7) { animation-delay: 0.7s; }

        @keyframes slideInRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .offcanvas-nav-link {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--primary-dark);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .offcanvas-nav-link:hover {
            color: var(--primary-color);
            padding-left: 2rem;
            background: rgba(255,255,255,0.05);
        }

        /* Contact Section in Offcanvas */
        .offcanvas-contact {
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            margin-top: auto;
            text-align: center;
        }

        .offcanvas-contact h5 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .offcanvas-phone {
            color: var(--primary-dark);
            text-decoration: none;
            font-size: 1rem;
            margin-bottom: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .offcanvas-phone:hover {
            color: var(--primary-dark);
            transform: scale(1.05);
        }

        .offcanvas-social {
            margin-top: 1rem;
        }

        .offcanvas-social a {
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .offcanvas-social a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Top Contact for larger screens */
        .top-contact-social a {
            color: var(--pure-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-contact-social a:hover {
            color: var(--primary-color);
        }

        .social-icons a {
            color: var(--primary-dark);
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        

        /* Responsive */
        @media (max-width: 768px) {
            .offcanvas-end {
                width: 300px;
            }
            
            .offcanvas-nav-link {
                font-size: 0.9rem;
                padding: 0.8rem 1.2rem;
            }
            
            .offcanvas-contact {
                padding: 1rem;
            }
        }

@font-face {
    font-family: 'Allura';
    src: url('../fonts/Allura-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.font-serif {
    font-family: 'Allura', cursive;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: var(--text-dark);
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: var(--primary-color);
}


.top-contact-social .fa-solid, .fa-brands:hover {
  color: var(--primary-color);
}

.social-icons a {
  color: transparent;
}

/* Header */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 150px;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Sticky Social Buttons */
.sticky-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
}

.sticky-social .btn {
    display: block;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.sticky-social .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(200, 168, 130, 0.7), rgba(200, 168, 130, 0.7)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23f4f2e8" width="1920" height="1080"/><path fill="%23c8a882" opacity="0.3" d="M0,540 Q480,270 960,540 T1920,540 L1920,1080 L0,1080 Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 137px;
}

.hero-content h1 {
    font-family: 'Allura', sans-serif;
    font-size: 6rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Section Styling */
.section-padding {
    padding: 75px 0;
}

.section-title {
    font-family: 'Allura', sans-serif;
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    padding: 10px 28px;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 0px;
}

.btn-outline-primary:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.about-text h2 {
    font-family: 'Allura', sans-serif;
    font-size: 3.7rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

/* Team Section */
.team-member {
    position: relative;
    height: 400px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover !important;
    background-position: center !important;
}

.team-member::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(100, 59, 48, 0.8);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::after {
    opacity: 1;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--white);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
    background: linear-gradient( to top, rgba(36, 7, 7, 0.8) 0%, rgba(77, 40, 31, 0.6) 50%, rgba(100, 59, 48, 0.0) 100% );

}

.team-member:hover .team-overlay {
    transform: translateY(0);
}

.service-card {
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
     font-family: 'Allura', sans-serif;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle fill="%23c8a882" cx="40" cy="40" r="40"/></svg>');
    background-size: cover;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: 
        linear-gradient(90deg, rgba(228, 203, 139, 0.9) 42.68%, rgba(228, 203, 139, 0.2) 91.31%), 
        url('../img/AdobeStock_152080192_Preview_2.jpg');
    background-size: cover;
    color: var(--primary-dark);
    text-align: center;
      background-size: cover;
  background-position: center; /* Bild mittig anzeigen */
  background-repeat: no-repeat; /* kein Wiederholen */
}


@media (max-width: 768px) {
  .cta-section {
    background-position: 70% center; /* etwas nach rechts verschoben */
  }
}

.partner-section {
    background: 
        linear-gradient(90deg, rgba(228, 203, 139, 0.9) 42.68%, rgba(228, 203, 139, 0.5) 91.31%), 
        url('../img/DSC_0076-1100x733.jpg');
    background-size: cover;
    color: var(--primary-dark);
    text-align: center;
}

/* Desktop: Zeile mit Überschrift links, Logos rechts nebeneinander */
.partner-logos {
  flex-direction: row;
  gap: 3rem;
}

/* Mobil: Überschrift und Logos in Spalten (Überschrift oben, Logos darunter) */
@media (max-width: 767.98px) {
  .partner-section .row.align-items-center {
    flex-direction: column !important; /* ganze Zeile wird Spalte */
text-align:center!important;
  }

  .partner-logos {
    flex-direction: column !important; /* Logos untereinander */
    gap: 3.5rem !important;
    justify-content: flex-start !important;
    width: 100%;
    margin-top: 1rem;
  }

  .partner-section h2 {
    margin-bottom: 2rem!important;
    text-align:center!important;
  }
}

.cta-section h2 {
    font-family: 'Mydrid Pro', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Studio Section */
.studio-main-image {
    height: 600px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 500"><rect fill="%23f0ede8" width="700" height="500"/><rect fill="%23c8a882" opacity="0.3" x="50" y="50" width="600" height="400" rx="10"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

.studio-text {
    background: var(--primary-dark);
    padding: 3rem;
    border-radius: 0px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-text h3 {
     font-family: 'Allura', sans-serif;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: #E4CB8B;
    margin-top: 2rem;
}

.studio-text p {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 15px;
}

.studio-small-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
    background: var(--secondary-color);
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Philosophy Section */
.philosophy-image {
    height: 500px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><rect fill="%23f0ede8" width="500" height="500"/><path fill="%23c8a882" opacity="0.4" d="M100,100 Q250,50 400,100 Q350,250 400,400 Q250,350 100,400 Q150,250 100,100 Z"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.philosophy-text h2 {
     font-family: 'Allura', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-text h3 {
     font-family: 'Allura', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #C9971680;
    color: var(--primary-dark);
    padding: 60px 0 0px;
}

.footer h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p,
.footer a {
    color: var(--primary-dark);
    text-decoration: none;
    display: block;
}

.footer a {
    text-decoration: underline!important;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Logo Transitions */
.navbar-brand img {
    height: 125px;
    transition: height 0.3s ease;
}

.navbar-scrolled .navbar-brand img {
    height: 90px;
}

.top-contact-social {
    overflow: hidden;
    max-height: 60px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding-left: 8px;
    padding-right: 8px;
    margin-right: 10px;
    margin-left: 10px;
}

.navbar-scrolled .top-contact-social {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.top-contact-social .fa-solid, 
.fa-brands {
    color: var(--primary-dark);
}

/* Hero Carousel */
.hero-carousel {
    height: 75vh;
    width: 100vw;
}

.carousel-item {
    height: 75vh;
    position: relative;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)!important;
    text-align: center;
    color: var(--primary-dark);
    z-index: 10;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 100% 100%;
}

/* Custom indicators position (top right) */
.carousel-indicators {
    position: absolute;
    top: 3rem;
    right: 4rem;
    bottom: auto;
    left: auto;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    opacity: 1;
    margin: 0;
}

.carousel-indicators .active {
    background-color: var(--primary-dark);
    border: 2px solid rgba(0, 0, 0, 0.8);
}

/* Team and Testimonial Carousels */
#teamCarousel,
#teamCarousel .carousel-item,
#testimonialsCarousel,
#testimonialsCarousel .carousel-item {
    height: 100% !important;
}

.carousel-control-prev, 
.carousel-control-next {
    background-color: var(--primary-color);
    width: 3rem;
    height: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Card Styles */
.card {
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 0px!important;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.card .content {
    background-color: #fff;
}

.card .content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
}

.card .content button {
    width: 100%;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
}

.card .content button:hover {
    background-color: #0056b3;
}

.card-img-top {
    padding-left: 0 !important;
    border-radius: 0px!important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Service Card Alternating Colors */
.row > .col-lg-3.col-md-6:nth-child(odd) .service-card {
    background-color: #E4CB8B;
    color: #643B30;
}

.row > .col-lg-3.col-md-6:nth-child(odd) .service-card .card-title,
.row > .col-lg-3.col-md-6:nth-child(odd) .service-card {
    color: #643B30;
}

.row > .col-lg-3.col-md-6:nth-child(even) .service-card {
    background-color: #FFFFFF;
    color: #C99716;
}

.row > .col-lg-3.col-md-6:nth-child(even) .service-card .card-title,
.row > .col-lg-3.col-md-6:nth-child(even) .service-card {
    color: #C99716;
}

.card-title.pt-2.mb-3 {
    font-size: 3rem;
}

.partner-logo-img {
    width: 200px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
        width: 350px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .about-text h2
    {
        font-size:3rem;
    }

    .studio-text {
    height: 750px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .carousel-indicators {
        top: 3rem;
        right: 3rem;
    }
}

@media (min-width: 208px) {
    .top-contact-social {
        display: none !important;
    }

    .navbar-brand img {
        height: 100px;
        transition: height 0.3s ease;
    }

    .navbar-scrolled .navbar-brand img {
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .top-contact-social {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .top-contact-social {
        display: flex !important;
    }
}