@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #a37451; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #a37451; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #a37451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #a37451;  /* The default color of the main navmenu links */
  --nav-hover-color: #a37451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a37451; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #a37451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #cfb49f;
  --default-color: #cfb49f;
  --heading-color: #a37451;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 767px) {
  .header .logo h1 {
    font-size: 22px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:last-child a {
  padding-right: 0;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--nav-dropdown-color);
}

.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  left: -90%;
  visibility: hidden;
}

.navmenu .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: -100%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  padding: 40px 0;
  background: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer-simple p {
  margin: 6px 0;
  color: var(--default-color);
  font-size: 0.95rem;
}

.footer-simple .footer-company {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.footer-simple a {
  color: var(--accent-color);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    padding: 45px 0;
    scroll-margin-top: 66px;
  }
}

@media (max-width: 767px) {
  section,
  .section {
    padding: 30px 0;
    scroll-margin-top: 200px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
  padding-bottom: 45px;
}

@media (max-width: 767px) {
  .section-title {
    padding-bottom: 0;
  }
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 60px;
  padding-bottom: 0px;
  /* ===== ROSENBERG CSS (einzige Quelle) ===== */
  /* ✅ MITTEN-SCHLEIER (von links nach rechts in der Bildmitte, wie Referenz) */
  /* Layout + Abstände */
  /* Linker Block */
  /* Titel: Univers Condensed + kleiner */
  /* Untertitel */
  /* Rechter Block: Linie + Text */
  /* Mobile */
}

@media (max-width: 767px) {
  .hero {
    padding-top: 0;
  }
}

.hero .hero-link {
  color: inherit;
  /* übernimmt die bestehende Farbe */
  text-decoration: none;
  /* kein Unterstrich */
  cursor: pointer;
}

.hero .hero-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero .hero-rosenberg .swiper-slide {
  position: relative;
  min-height: clamp(520px, 70vh, 820px);
}

@media (max-width: 900px) {
  .hero .hero-rosenberg .swiper-slide {
    min-height: 520px;
  }
}

.hero .hero-rosenberg .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.95);
}

.hero .hero-rosenberg .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0.22) 26%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.32) 70%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .hero-rosenberg .slide-content--rosenberg {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  /* <-- hier Abstand links/rechts */
  text-align: left;
  /* wichtig */
  color: #fff;
}

.hero .hero-rosenberg .hero-left {
  flex: 0 1 500px;
  text-align: left;
}

@media (max-width: 900px) {
  .hero .hero-rosenberg .hero-left {
    flex: 0 1;
  }

  .hero .hero-rosenberg .slide-content--rosenberg {
    justify-content: center;
  }

  .hero .hero-rosenberg .hero-right {
    flex: 0 1 !important;
  }
}

.hero .hero-rosenberg h1 {
  font-family: "Univers Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.02;
  font-size: clamp(32px, 4.2vw, 78px);
  margin: 0 0 22px 0;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero .hero-rosenberg .hero-subblock {
  max-width: 520px;
  margin-top: 0;
}

.hero .hero-rosenberg .hero-subtitle {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(24px, 2vw, 34px);
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero .hero-rosenberg .hero-subtext {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: clamp(14px, 1.05vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero .hero-rosenberg .hero-right {
  flex: 0 0 420px;
  max-width: 420px;
  display: grid;
  grid-template-columns: 3px 1fr;
  align-items: center;
  gap: 30px;
  /* <-- Abstand Linie -> Text */
}

.hero .hero-rosenberg .hero-divider {
  width: 3px;
  height: clamp(300px, 40vh, 520px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero .hero-rosenberg .hero-right-text {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.22;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .hero .hero-rosenberg .slide-content--rosenberg {
    padding: 0 24px;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero .hero-rosenberg .hero-left {
    max-width: 100%;
  }

  .hero .hero-rosenberg .hero-right {
    max-width: 520px;
    align-items: start;
  }

  .hero .hero-rosenberg .hero-divider {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  --heading-color: #000000;
  padding-top: 8px;
  padding-bottom: 12px;
  /* --- Rosenberg Split Hero (wie Screenshot) --- */
  /* rechter Bereich */
  /* Linien */
  /* Headline */
  /* Textblock rechts */
  /* Brauner Serif-Ton wie im Screenshot */
  /* Link unten, zentriert */
  /* Responsive: auf Mobile Bild oben, Text unten */
}

.about .rosenberg-hero {
  /* falls du Bootstrap im Projekt hast: neutral bleiben */
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #ffffff;
}

.about .rosenberg-hero__media {
  /* Bild links */
  background-image: url("https://schuerwies.ch/media/bild1.jpg");
  /* <-- DEIN BILD HIER */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about .rosenberg-hero__content {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5vw, 64px);
  justify-content: flex-start;
}

.about .rosenberg-hero__rule {
  width: 100%;
  background: #111;
}

.about .rosenberg-hero__rule--top {
  height: 4px;
  margin: 0 0 clamp(28px, 3vw, 40px) 0;
}

.about .rosenberg-hero__rule--bottom {
  height: 2px;
  margin-top: clamp(28px, 4vw, 48px);
}

.about .rosenberg-hero__title {
  margin: 0 0 clamp(28px, 3vw, 44px) 0;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
}

.about .rosenberg-hero__title-line {
  display: block;
  text-transform: uppercase;
  font-size: clamp(32px, 4.8vw, 64px);
}

.about .rosenberg-hero__title-line--second {
  margin-top: 10px;
}

.about .rosenberg-hero__text {
  max-width: 680px;
}

.about :root {
  --rosenberg-brown: #8b6b52;
  --rosenberg-brown-soft: rgba(139, 107, 82, 0.65);
}

.about .rosenberg-hero__lead {
  margin: 0 0 22px 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  color: var(--rosenberg-brown);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.about .rosenberg-hero__body {
  margin: 0 0 18px 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--rosenberg-brown-soft);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.about .rosenberg-hero__body--emph {
  margin-top: 8px;
}

.about .rosenberg-hero__link {
  display: inline-block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  color: var(--rosenberg-brown);
  text-decoration: none;
  font-size: clamp(20px, 1.7vw, 26px);
  align-self: center;
}

.about .rosenberg-hero__link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 992px) {
  .about .rosenberg-hero {
    grid-template-columns: 1fr;
  }

  .about .rosenberg-hero__media {
    min-height: 46vh;
  }

  .about .rosenberg-hero__content {
    min-height: auto;
  }
}

/*--------------------------------------------------------------
# Login Register Section
--------------------------------------------------------------*/
.login-register {
  --background-color: rgba(207, 180, 159, 0.178);
  --default-color: #000000;
  --heading-color: #000000;
  padding-top: 6px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}

:root {
  --rosenberg-brown-dark: #5b4636;
}

/* Deko-Bubbles */
.login-register::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  left: -200px;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.login-register::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite reverse;
}

/* Wrapper / Card */
.login-register .auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.login-register .auth-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 32px 64px -12px color-mix(in srgb, var(--default-color), transparent 90%);
  width: 100%;
  max-width: 720px;
  position: relative;
}

@media (max-width: 768px) {
  .login-register .auth-card {
    padding: 32px 15px;
    margin: 20px 0;
  }
}

/* Header */
.login-register .auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-register .auth-header h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .login-register .auth-header h2 {
    font-size: 1.75rem;
  }
}

.login-register .auth-header p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  margin: 0;
}

/* Form Layout */
.login-register .auth-form {
  margin-bottom: 0;
}

.login-register .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .login-register .form-grid {
    gap: normal;
    grid-template-columns: 1fr;
  }
}

.login-register .auth-form .form-group {
  margin-bottom: 20px;
}

.login-register .auth-form label {
  display: block;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Inputs / Select / Textarea */
.login-register .auth-form input[type=text],
.login-register .auth-form input[type=email],
.login-register .auth-form input[type=tel],
.login-register .auth-form select,
.login-register .auth-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 22px;
  font-size: 0.95rem;
  background: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.login-register .auth-form textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
}

/* Select Pfeil */
.login-register .auth-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--default-color), transparent 35%) 50%), linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 35%) 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%, 0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

/* Focus */
.login-register .auth-form input:focus,
.login-register .auth-form select:focus,
.login-register .auth-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.login-register .auth-form input::placeholder,
.login-register .auth-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}
.hp-field{
    position:absolute !important;
    left:-10000px !important;
    top:auto !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
  }
/* Button */
.login-register .auth-form .submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-register .auth-form .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-1px);
}

.login-register .auth-form .submit-btn:active {
  transform: translateY(0);
}

/* Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@media (max-width: 575px) {
  .navmenu a, .navmenu a:focus {
    padding: 5px 0;
  }
}