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

/* cormorant-garamond-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: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/cormorant-garamond-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-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: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/cormorant-garamond-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-700 - 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: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-700italic - 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: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v20-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* sarabun-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: 'Sarabun';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Sarabun-Regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* sarabun-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: 'Sarabun';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Sarabun-Medium.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* sarabun-700 - 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: 'Sarabun';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Sarabun-Bold.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


        :root {
            --primary-red: #7C0002;
            --dark-gray: #383838;
            --darker-gray: #222222;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Sarabun', sans-serif;
            color: white;
        }
        
        .cormorant {
            font-family: 'Cormorant Garamond', serif;
        }
        
        /* Header */
        .navbar {
            background-color: transparent;
            padding: 29px 0;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 300;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 20px;
            font-weight: 300;
            font-size: 1rem;
        }
        
        .btn-catering {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-catering:hover {
            background-color: #a00003;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            display: flex;
            align-items: end;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            top: -22%;
        }
        
        .hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            letter-spacing: 0.1em;
            margin-bottom: 90px;
            color: white;
            font-weight: 700;
            font-style: italic;
        }
        
        .hero-image {
          position: absolute;
          top: 55%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 100%;
          max-width: 1622px;
          height: 100%;
          max-height: 710px!important;
          border-radius: 92px;
          overflow: hidden;
          z-index: 1;
          box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(183deg, rgba(0, 0, 0, 0.00) -64.47%, rgba(0, 0, 0, 0.7) 97.9%);
            z-index: 1;
        }
        
        .scroll-down {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) !important;
            color: white;
            font-size: 1.5rem;
            background-color: var(--primary-red);
            bottom: 19px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;

        }

        .bi.bi-chevron-double-down {
            font-size: 36px;
            }
        
        .scroll-down:hover {
            background-color: #a00003;
            transform: translateX(-50%) translateY(-5px);
        }
        
        /* Content Sections */
        .content-section {
            padding-bottom: 80px;
            position: relative;
        }
        
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: white;
            margin-bottom: 30px;
        }
        
        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .image-container {
            position: relative;
            margin-bottom: 50px;
        }
        
        .image-container img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 15px;
            max-width: 550px;
        }
        
        .contact-info {
            background-color: var(--primary-red);
            padding: 42px;
            border-radius: 15px;
            color: white;
            position: absolute;
            bottom: -30px;
            right: 40px;
            width: 344px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10;
        }
        
        .contact-info h4 {
            font-family: 'Sarabun', sans-serif;
            font-size: 1.75rem;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 19px;
            font-size: 0.9rem;
        }
        
        .contact-info i {
            margin-right: 10px;
            width: 20px;
        }
        
        /* Red Banner */
        .red-banner {
            background-color: var(--primary-red);
            padding: 40px 0;
        }
        
        .red-banner h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .red-banner p {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .btn-white {
            background-color: white;
            color: var(--primary-red);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-white:hover {
            background-color: #f8f9fa;
            color: var(--primary-red);
        }
        
        /* Services Section */
        .services-section {
            background-color: white;
            position: relative;
            overflow: hidden;
            padding-top: 95px;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: 2%;
            left: -7%;
            width: 1000px;
            height: 1000px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23dee2e6'%3E%3Cpath d='M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0l32 0c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64l32 0c123.7 0 224 100.3 224 224l0 32 0 160c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-160C100.3 320 0 219.7 0 96z'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            opacity: 0.2;
            animation: floatSoft1 20s ease-in-out infinite;
            z-index: 0;
        }

        .services-section::after {
            content: '';
            position: absolute;
            bottom: 1%;
            right: 4%;
            width: 650px;
            height: 650px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23dee2e6'%3E%3Cpath d='M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0l32 0c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64l32 0c123.7 0 224 100.3 224 224l0 32 0 160c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-160C100.3 320 0 219.7 0 96z'/%3E%3C/svg%3E") no-repeat center;
            background-size: contain;
            opacity: 0.2;
            animation: floatSoft2 20s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes floatSoft1 {
            0%, 100% {
                transform: translateY(0) scale(1) rotate(20deg);
            }
            25% {
                transform: translateY(15px) scale(1.01) rotate(10deg);
            }
            50% {
                transform: translateY(10px) scale(1.01) rotate(20deg);
            }
            75% {
                transform: translateY(-10px) scale(1.01) rotate(30deg);
            }
        }

        @keyframes floatSoft2 {
            0%, 100% {
                transform: translateY(0) scale(1) rotate(-20deg);
            }
            25% {
                transform: translateY(15px) scale(1.01) rotate(-10deg);
            }
            50% {
                transform: translateY(10px) scale(1.01) rotate(-20deg);
            }
            75% {
                transform: translateY(-10px) scale(1.01) rotate(-30deg);
            }
        }
        
        .services-section .container {
            position: relative;
            z-index: 2;
            max-width: 1220px;

        }
        
        .section-title-dark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--darker-gray);
            margin-bottom: 30px;
        }
        
        .text-dark {
            color: var(--dark-gray);
        }
        
        .service-item {
            margin-bottom: 60px;
        }
        
        .service-content {
            border-left: 4px solid var(--primary-red);
            padding-left: 27px;
            margin-left: 20px;
            margin-bottom:45px;
        }
        
        .service-content h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--darker-gray);
            margin-bottom: 20px;
        }
        
        .service-content p {
            color: var(--dark-gray);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .btn-mehr {
            padding: 13px 29px;
            border: 2px white solid!important;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-mehr:hover {
            background-color: var(--primary-red);
            color: #fff;
            border-color: var(--primary-red)!important;
            transform: translateY(-3px);
        }


        .btn-mehr-red{
            border: 2px solid var(--primary-red) !important;
              padding: 13px 29px;
              border: none;
              border-radius: 25px;
              font-size: 0.9rem;
              text-decoration: none;
              display: inline-block;
              transition: all 0.3s ease;
              color: var(--primary-red);

        }


            .btn-mehr-red:hover {
              background-color: var(--dark-gray);
              color: #fff;
              border-color: var(--dark-gray) !important;
              transform: translateY(-3px);
            }

        
        /* Footer */
        .footer {
            background-color: var(--primary-red);
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        
        .footer h5 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .footer a:hover {
            color: #ccc;
        }
        
        .social-links a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 30px;
            font-size: 0.8rem;
            color: #ccc;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
                margin-bottom: 0px!important;
            }

            .hero-content {
                top: -35%;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }

            .service-content {
                margin-left: 0px;
            }

            .content-section {
                padding:  0px!important;
                }
                            
            .navbar-nav .nav-link {
                margin: 10px 0;
            }
        

            .hero-section {
            height: 95vh;
                }



            .navbar {
            padding: 34px;
            }
            
            .contact-info {
                position: static;
                width: 100%;
                margin-top: 20px;
            }
            
            .image-container {
                margin-bottom: 20px;
            }
        }


        @media (max-width: 1300px) {
            
            
            .hero-image {
                max-height:600px!important;
            }

            
        }


        .back-color {
          background: radial-gradient(71.35% 70.22% at 50% 36.7%, #838383 5.32%, #212121 82.21%);
        }

            .back-color-2 {
              background: radial-gradient(71.35% 70.22% at 50% 36.7%, #484848 5.32%, #212121 82.21%);

            }



        .address {
          display: flex;
          align-items: flex-start;
        }

        .address i {
          margin-right: 8px;
          margin-top: 3px; /* optional: für bessere vertikale Ausrichtung */
        }

        .address-text {
          line-height: 1.4;
          margin-bottom: 10px;
        font-size: 0.9rem;
        }

        .cormorant {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .navbar-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 300;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 20px;
            font-weight: 300;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #ccc !important;
        }
        
        /* Dropdown Styles */
        .dropdown-menu {
            background-color: var(--primary-red);
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin-top: 0px;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-item {
            color: white !important;
            padding: 12px 20px;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: rgba(255,255,255,0.1);
            color: white !important;
        }
        
        .dropdown-toggle::after {
            margin-left: 8px;
        }
        
        /* Mobile Toggler */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Offcanvas Styles */
        .offcanvas {
            background: linear-gradient(135deg, var(--primary-red), #a00003);
            color: white;
            width: 300px !important;
        }
        
        .offcanvas-header {
            padding: 30px;
        }
        
        .offcanvas-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 300;
        }
        
        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        
        .btn-close:hover {
            opacity: 1;
        }
        
        .offcanvas-body {
            padding: 0;
        }
        
        .offcanvas-nav {
            padding: 20px 0;
        }
        
        .offcanvas-nav .nav-link {
            color: white !important;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 300;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            margin: 0;
        }
        
        .offcanvas-nav .nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 40px;
        }
        
        .offcanvas-nav .nav-link i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }
        
        /* Mobile Dropdown Arrow */
        .mobile-dropdown-arrow {
            transition: transform 0.3s ease;
        }
        
        .mobile-dropdown-arrow.collapsed {
            transform: rotate(0deg);
        }
        
        .mobile-dropdown-arrow:not(.collapsed) {
            transform: rotate(180deg);
        }
        
        /* Dropdown in Offcanvas */
        .offcanvas-dropdown {
            background-color: rgba(255,255,255,0.1);
        }
        
        .offcanvas-dropdown .dropdown-item {
            color: white !important;
            padding: 12px 30px 12px 60px;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .offcanvas-dropdown .dropdown-item:hover {
            background-color: rgba(255,255,255,0.1);
            padding-left: 70px;
        }
        
        .offcanvas-dropdown .dropdown-item:last-child {
            border-bottom: none;
        }
        
        /* CTA Button */
        .btn-catering {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-catering:hover {
            background-color: #a00003;
            color: white;
            transform: translateY(-2px);
        }
        
        .offcanvas-cta {
            padding: 30px;
            text-align: center;
        }
        
        .offcanvas-cta .btn-catering {
            background-color: white;
            color: var(--primary-red);
            font-weight: 500;
            width: 100%;
        }
        
        .offcanvas-cta .btn-catering:hover {
            background-color: #f8f9fa;
            color: var(--primary-red);
        }
        
        /* Demo Content */
        .demo-content {
            padding: 100px 20px;
            text-align: center;
        }
        
        .demo-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .demo-content p {
            font-size: 1.2rem;
            color: #ccc;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .navbar-nav {
                display: none;
            }
        }
        
        @media (min-width: 992px) {
            .navbar-toggler {
                display: none !important;
            }
        }

        .services-section img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 15px;
        max-height: 400px;
        border-radius: 12px;
        }


        .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  background-color: var(--dark-gray);
  border-radius: 50%;
  color: white; /* Icon-Farbe */
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #555; /* dunkleres Grau beim Hover */
}

.contact-box {
  display: flex;
  align-items: center;
  background-color: #7a0000;
  color: white;
  padding: 15px 0px;
  gap: 15px;
  max-width: fit-content;
}

.icon-circle {
  background-color: #383838; /* --dark-gray */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-text p {
  margin: 0;
  font-size: 14px;
}

.contact-text strong {
  font-size: 18px;
  display: block;
  margin-top: 2px;
}


.footer-col {

    justify-content: center;
  align-content: center;
  display: grid;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(124, 0, 2, 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(--darker-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 34, 34, 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;
    }
}