/* CSS Variables for Color Palette */
:root {
  --color-bg: #e4dfd7; /* Solid light beige (60% mix over white) */
  --color-accent-pink: #e4dfd7; /* Matching light beige */
  --color-accent-green: #cfcdc1; /* Solid light salbeigrün (60% mix over white) */
  --color-accent-red: #B46A55; /* Earthy Red */
  --color-text: #333333; /* Dark Headings */
  --color-text-body: #a9a091; /* Beige für Fließtext */
  --color-white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--color-text);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: var(--color-bg); /* Solid light beige #e4dfd7 */
  transition: padding 0.4s ease;
}

header.scrolled {
  background-color: var(--color-bg); /* Solid light beige #e4dfd7 */
  padding: 14px 40px;
}

.header-logo {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.4s ease; /* Dynamic scaling on scroll */
}

header.scrolled .header-logo {
  height: 32px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text); /* #333333 */
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-accent-red);
}

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

.menu-toggle span {
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Scroll Lock on Mobile Menu Open */
body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-accent-red);
  color: var(--color-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

.btn-outline-red {
  background-color: transparent;
  color: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
}

.btn-outline-red:hover {
  background-color: var(--color-accent-red);
  color: var(--color-white);
}

/* Hero Section (Framed Layout) */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg); /* Beige background shows as frame */
  padding: 100px 24px 24px 24px; /* Space on top for header, margins for frame */
  transition: padding-top 0.4s ease;
}

body.has-announcement .hero {
  padding-top: 140px; /* Shift down for announcement bar */
}

.hero-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft frame shadow */
  display: flex; /* Flexbox centering */
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Under the text content */
  filter: brightness(0.75); /* Darkened slightly to pop white text */
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
  z-index: 2; /* Above the image layer */
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero .btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.hero .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}

/* About Section */
.about {
  padding: 100px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
}

.about-container {
  display: flex;
  max-width: 1200px;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* abgerundete Ecken passend zum Hero-Bild */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-text {
  flex: 1;
  padding: 40px;
  background-color: var(--color-accent-pink); /* Solid light beige */
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Instagram Section */
.instagram {
  padding: 100px 5%;
  text-align: center;
}

.instagram h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.instagram p {
  margin-bottom: 40px;
  color: var(--color-text-light);
}

.instagram-widget-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Contact / Footer */
.contact-footer {
  background-color: var(--color-accent-green); /* Solid light salbeigrün */
  padding: 80px 5% 40px;
  color: var(--color-text);
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 60px;
  gap: 60px;
}

.contact-info, .contact-form-container {
  flex: 1;
}

.contact-info h3, .contact-form-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-text);
  font-size: 14px;
  text-transform: uppercase;
}

.instagram-icon-link {
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.instagram-icon-link:hover {
  color: var(--color-accent-red);
  transform: translateY(-2px);
}

.directions-container {
  display: flex;
  max-width: 1200px;
  margin: 60px auto 0;
  gap: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 60px;
}

.directions-info, .directions-map {
  flex: 1;
}

.directions-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: rgba(255,255,255,0.5);
  font-family: inherit;
}

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

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-red);
}

footer {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
  font-size: 14px;
}

/* Coming Soon Specific (New Layout) */
.coming-soon-new-wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DEDCD3; /* Soft Light Sage Green */
  text-align: center;
  padding: 20px;
}

.coming-soon-new-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100%;
}

.coming-soon-top-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 3rem); /* ca. 25% smaller: Min 22.4px, Max 48px */
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #9a9383; /* Matches original logo color and body text color */
  margin-bottom: 35px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap; /* Prevents wrapping onto a second line */
}

.coming-soon-logo-container {
  width: 100%;
  max-width: 320px;
  margin-bottom: 45px;
}

.coming-soon-logo-container img {
  width: 100%;
  height: auto;
  display: block;
}

.coming-soon-btn {
  margin-top: 10px;
  background-color: var(--color-accent-red); /* Erdiges Rot #B46A55 */
  color: var(--color-white);
  padding: 12px 35px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.coming-soon-btn:hover {
  background-color: #9d5b49;
  transform: translateY(-1px);
}

.coming-soon-footer {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9383;
}

.coming-soon-footer a {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.coming-soon-footer a:hover {
  color: var(--color-accent-red);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--color-white);
  font-family: inherit;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-accent-red);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  letter-spacing: 1px;
}

body.has-announcement header {
  top: 40px;
}

body.has-announcement header.scrolled {
  top: 0;
}

@media (max-width: 900px) {
  .about-container, .contact-container, .directions-container {
    flex-direction: column;
  }
  .directions-container {
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile Menu Styles */
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #DEDCD3; /* Salbeigrün */
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  nav ul li a {
    font-size: 22px;
    letter-spacing: 0.2em;
    color: var(--color-text);
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
}
