@charset "utf-8";

/*========Farben=========
Grün        #506C47
Dunkelblau  #515970
Hellbraun   #8F7040
Schwarz     #0d1522
Hellgrau    #e7e6e2
Weiß        #fafafa
*/

/*Nur für Branding-Board*/
#gruen {
  background: #506C47;
  color: #ffffff;
}

#dunkelblau {
  background: #515970;
  color: #ffffff;
}

#hellbraun {
  background: #C27D48;
  color: #ffffff;
}

#schwarz {
  background: #0d1522;
  color: #ffffff;
}

#hellgrau {
    background: #e7e6e2;
    color: #0d1522;
}

#weiß {
    background: #fafafa;
    color: #0d1522;
}

/*========Globale Styles=======*/
html {
  scroll-behavior: smooth;
}

/*------Font-Einbindung------*/
@font-face {
  font-family: 'GT Haptik Light';
  src: url('../_fonts/GT-Haptik-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Haptik Light Oblique';
  src: url('../_fonts/GT-Haptik-Light-Oblique.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GT Haptik Regular';
  src: url('../_fonts/GT-Haptik-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal; 
  font-display: swap;
}

@font-face {
  font-family: 'GT Haptik Regular Oblique';
  src: url('../_fonts/GT-Haptik-Regular-Oblique.woff2') format('woff2');
  font-weight: 400;
  font-style: italic; 
  font-display: swap;
}

@font-face {
  font-family: 'GT Haptik Medium';
  src: url('../_fonts/GT-Haptik-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Haptik Medium Rotalic';
  src: url('../_fonts/GT-Haptik-Medium-Rotalic.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*------Reset------*/
* {
  margin: 0;
  padding: 0;
  -mozbox-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*------Basisformatierung------*/
body {
  font: 300 1.125rem/1.44 'GT Haptik Light', Helvetica, Arial, sans-serif;
  color: #180a2e;
  background: #fafafa;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'GT Haptik Medium', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
}

h1 {
  font-size: 8rem;
  line-height: 1;
}

h2 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
}

a {
  color: #C27D48;
  text-decoration: none;
  transition: all 0.15s ease-out 0s;
}

a:hover {
  color: #506C47;
}

p {
  margin: 0 0 20px;
}

li {
  margin-bottom: 20px;
  list-style: none;
}

.btn-1 {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #506C47;
  color: #fafafa;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.15s ease-out 0s;
}

.btn-1:hover {
  background-color: #fafafa;
  color: #506C47;
}

.btn-2 {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #fafafa;
  color: #C27D48;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.15s ease-out 0s;
}

.btn-2:hover {
  background-color: #506C47;
  color: #fafafa;
}

.btn-3 {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #506C47;
  border: 2px solid #506C47;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font: bold 1.125rem/1.44 'GT Haptik Light', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
}

.btn-3:hover {
  background-color: #506C47;
  color: #fafafa;
}

.btn-4 {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #C27D48;
  color: #fafafa;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font: bold 1.125rem/1.44 'GT Haptik Light', Helvetica, Arial, sans-serif;
  border-radius: 5px;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
}

.btn-4:hover {
  background-color: transparent;
  color: #C27D48;
  border: 2px solid #C27D48;
}

.rotalic {
  font-family: 'GT Haptik Medium Rotalic', Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}

.intro {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.5rem;
}

section {
  padding: 25px 0;
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

/*------Header------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.logo img {
  max-height: 60px;
}

.nav a {
  position: relative;
  margin-left: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #363e4f;
  font-weight: normal;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #C27D48;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background-color: #C27D48;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

/* --- Toggle Button --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #363e4f;
  border-radius: 2px;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/*------Footer------*/
.footer {
  background: #f2f2f2;
  padding: 2rem;
  font-size: 0.875rem;
  color: #0d1522;
}

.footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-middle {
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: #C27D48;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #506C47;
}

.footer-bottom {
  font-size: 0.75rem;
  color: #777;
}


/*======Startseite======*/

/*------HERO------*/
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 0;
}

.video-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #fafafa;
  text-align: left;
  padding: 2rem;
}

.hero p {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
}

/*------Ueber uns------*/
.about {
  margin-bottom: 100px;
}

.about-image,
.about-text {
  flex: 1 1 calc(50% - 0.75rem); /* 50% minus halbes gap */
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*------Speisen & Getränke------*/
.menu {
  background: #C27D48;
  color: #fafafa;
  letter-spacing: 0.3px;
}

.menu-text,
.menu-image {
  flex: 1 1 calc(50% - 1.5rem);
}

.menu-text .btn-2 {
  display: inline-block;
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

.menu-image img {
  width: 100%;
  height: auto;
  margin-top: -128px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/*------Event- & Begegnungsort------*/
.events {
  text-align: center;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}
  
.event-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
  
.event-card:hover {
  transform: translateY(-5px);
}
  
.icon-wrapper svg {
  width: 48px;
  height: 48px;
  color: #C27D48; 
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.event-card h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.2rem;
}
  
.event-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #0d1522;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
  
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

/*------Galerie------*/
.fullscreen-gallery {
  width: 100vw;
  height: auto;
  overflow: hidden;
}

.fullscreen-gallery h2 {
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*------Blog------*/
.blog h2 {
  text-align: center;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.blog-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.3rem;
}

.blog-card p {
  padding: 0 1rem 1rem;
  color: #0d1522;
  font-size: 0.95rem;
  flex-grow: 1;
}

.blog-card .btn-4 {
  margin: 0 1rem 1.5rem;
  align-self: flex-start;
}

/*------Reservierungsformular------*/
.reservierung {
  background: #506C47;
  color: #fafafa;
  padding: 4rem 2rem;
  text-align: center;
}

.res-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.form-grid input {
  flex: 1 1 calc(33% - 1rem);
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.res-form .btn-4 {
  display: inline-block;
  width: auto;
  max-width: 240px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.res-form .btn-4:hover {
  background-color: #fafafa;
  color: #C27D48;
  border: none;
}

/*------Kontakt------*/
.kontakt .intro {
  text-align: left;
}

.kontakt-info {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}

.kontakt-details {
  flex: 0 1 40%;
  max-width: 40%;
  min-width: 0;
  box-sizing: border-box;
}

.kontakt-karte {
  flex: 0 1 58%;
  max-width: 58%;
  min-width: 0;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

/*------Merch-Shop------*/
.merch-teaser h2 {
  text-align: center;
}

.merch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.merch-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.merch-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.merch-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.merch-card p {
  font-size: 0.95rem;
  color: #0d1522;
  margin-bottom: 2.5rem;
}

/*------To the top------*/
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #506C47;
  color: #fff;
  text-align: center;
  line-height: 48px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1.5rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/*------Reservierungsbutton mobil------*/
.mobile-reservieren-btn {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background-color: #C27D48;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 5px;
  z-index: 10000;
  transition: background-color 0.3s ease;
  text-decoration: none;
  width: 70%;
  max-width: 300px;
}


/*======Media-Queries======*/

@media (max-width: 960px) {

/*------Allgemein------*/

h1 {
  font-size: 4rem;
  line-height: 1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

/*------Header------*/
.nav-toggle {
  display: flex;
}

.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fafafa;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  display: none;
}

.nav.active {
  display: flex;
}

.nav a {
  margin: 0;
  font-size: 1.1rem;
}

.header {
  position: relative;
  box-shadow: none;
  padding: 1rem;
}

.logo img {
  max-height: 45px;
}

/*------Hero------*/

.video-hero {
  height: 60vh;
}

.hero-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-text {
  color: #fafafa;
  text-align: center;
  padding: 2rem;
  margin-left: 0;
}

.hero-text h1 {
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: bold;
}

.hero-text .btn-1 {
  display: none;
}

/*------Über-uns------*/

.about {
  margin-bottom: 0;
}

.about-image, .about-text {
  flex: 1 1 100%;
}

.about-text {
  margin-top: 0;
}

/*------Speisen & Getränke------*/

.menu-text,
.menu-image {
  flex: 1 1 100%;
}

.menu-image {
  margin-top: 2rem;
  order: 1;
}

.menu-image img {
  margin-top: 0;
}

.menu-text {
  order: 2;
}

/*------Event- & Begegnungsort------*/
.event-card {
  flex: 1 1 100%;
}

/*------Galerie------*/
.swiper-slide img {
  height: auto;
  object-fit: contain;
}

/*------Blog------*/
.blog h2,
.reservierung h2 {
  text-align: left;
}

.blog .intro,
.reservierung .intro {
  text-align: left;
}

.blog-card {
  flex: 1 1 100%;
}

/*------Reservierungsformular------*/
.form-grid input {
  flex: 1 1 100%;
}

.res-form .btn-4 {
  margin: 1.5rem 0 0 0;
  width: 100%;
  max-width: none;
}

/*------Kontakt------*/
.kontakt-info {
  flex-direction: column;
}

.kontakt-details,
.kontakt-karte {
  flex: 1 1 100%;
  max-width: 100%;
}

.kontakt-karte {
  height: 250px !important;
  min-height: 250px;
  margin-top: 1rem;
  display: block;
}

/*------Merch-Shop------*/
.merch-card {
  flex: 1 1 100%;
}

/*------To-the-top-Pfeil------*/
.scroll-to-top {
  bottom: 1rem;
  right: 1rem;
}

/*------Reservierungbutton mobil------*/
.mobile-reservieren-btn {
  display: block;
  left: 1rem;
  right: auto;
  width: calc(100% - 80px); /* Platz für den Top-Button rechts */
}
}