@charset "UTF-8";
/* CSS Document */

      :root {
        --bg: #efefef;
        --surface: #ffffff;
        --text: #666666;
		/*--heading: #aa6600; /*accassible*/
		/*--heading: #3d3d3d; /*accassible*/
		--accent: #f39200;
        --heading: #f39200;
		--headingsub: #3b72d2;
        /*--accent: #592684;*/
		/*--line: #b98fd7;*/ 
        --footer: #f39200;
		--line: #f39200;
        --shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        --shadow2: 0 -4px 14px rgba(0, 0, 0, 0.12);
        --radius: 18px;
        --container: 1140px;
		--ctacolor: #3b72d2;
		--missing: #fc00ff;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        background: var(--bg);
		/*background-image: url("../images/r_u_w_background.jpg");
		background-position: center; 
  		background-repeat: no-repeat;
  		background-size: contain; 
		background-position: bottom;*/
        color: var(--text);
        line-height: 1.45;
      }

      img {
        max-width: 100%;
        display: block;
      }

      .portrait::after {
        content: "";
        display: block;
        width: 165px;
        max-width: 100%;
        height: 3px;
        border-radius: 999px;
        background: var(--line);
        margin-top: 8px;
      }

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

.stoerer {
  position: fixed; /* Fixiert das Element relativ zum Viewport */
  bottom: 20px;    /* Abstand von unten */
  right: 2px;     /* Abstand von rechts */
  
  /* Styling (Optional) */
  background-color: var(--accent);
  color: white;
	width: auto;
	min-width: 120px;
  padding: 5px 25px;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;   /* Stellt sicher, dass es über anderen Inhalten liegt */
        font-size: clamp(1.4rem, 5vw, 3rem);
        line-height: 0.9;
        font-weight: 800;
        letter-spacing: -0.02em;
  cursor: pointer;
  text-align: center;
	
}

.stoerer p {
	
}

	  .missing {
	    color: var(--missing);
		  display: inline;
		}

      .container {
        width: min(calc(100% - 32px), var(--container));
        margin: 0 auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
      }

      .header-inner {
        min-height: 88px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
      }

      .brand-mark {
        width: 0px;
		/*width: 168px;*/
        height: 41px;
		/*background-image: url("../images/R_u_W_Logo_Initialen_sml.png");
        
        border-radius: 14px;		
		background: linear-gradient(135deg, var(--accent), var(--heading));*/
        flex-shrink: 0;
      }

      .brand-text {
        min-width: 0;
      }

      .brand-title {
        margin: 0;
        color: var(--accent);
        font-size: 1.2rem;
        line-height: 0.95;
        font-weight: 800;
      }

      .brand-title span {
        color: var(--heading);
      }

      .brand-subtitle {
        margin: 4px 0 0;
        font-size: 0.9rem;
        color: var(--text);
      }

      .nav-toggle {
        width: 48px;
        height: 48px;
        border: 0;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }

      .nav-toggle span,
      .nav-toggle::before,
      .nav-toggle::after {
        content: "";
        display: block;
        width: 30px;
        height: 4px;
        border-radius: 999px;
        background: #b7b7b7;
        position: absolute;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }

      .nav-toggle span {
        position: relative;
      }

      .nav-toggle::before {
        transform: translateY(-10px);
      }

      .nav-toggle::after {
        transform: translateY(10px);
      }

      .nav-toggle[aria-expanded="true"] span {
        opacity: 0;
      }

      .nav-toggle[aria-expanded="true"]::before {
        transform: rotate(45deg);
      }

      .nav-toggle[aria-expanded="true"]::after {
        transform: rotate(-45deg);
      }

      .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        display: none;
      }

      .site-nav.open {
        display: block;
      }

      .site-nav ul {
        list-style: none;
        margin: 0;
        padding: 12px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .site-nav a {
        display: inline-block;
        padding: 14px 10px;
        font-weight: 700;
        color: var(--heading);
      }

      .site-nav a:hover,
      .site-nav a:focus-visible,
      .site-nav a.active {
        color: var(--accent);
      }

      main {
        overflow: hidden;
      }

      .section {
        position: relative;
        padding: 56px 0;
      }

      .section-label {
        display: inline-block;
        margin: 0 0 10px;
        color: var(--headingsub);
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.1;
        position: relative;
      }

      .section-label::after {
        content: "";
        display: block;
        width: 165px;
        max-width: 100%;
        height: 3px;
        border-radius: 999px;
        background: var(--line);
        margin-top: 8px;
      }

      .section-title {
        margin: 0 0 24px;
        color: var(--heading);
        font-size: clamp(2.2rem, 5vw, 3rem);
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .about-grid,
      .contact-grid {
        display: grid;
        gap: 28px;
      }

      .about-copy p,
	  .about-copy,
      .services-note,
      .contact-note,
      .imprint-copy p {
        margin: 0 0 18px;
        font-size: 1.05rem;
      }

      .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 22px 0 28px;
      }

      .service-item {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--text);
        font-size: 1.15rem;
        font-weight: 700;
      }

      .service-icon {
        width: 60px;
        height: 60px;
        border: 1px solid var(--heading);
        color: var(--accent);
        border-radius: 10px;
		/*display: block;
        display: inline-flex;
		display: inline-block;*/
		padding: 5px;
        align-items: center;
        /*justify-content: center;*/
        font-size: 1.2rem;
        flex-shrink: 0;
      }
		
		.service-icon img {
			display: block;
	  }

      .flower {
        position: absolute;
        z-index: 0;
        opacity: 0.75;
        pointer-events: none;
        font-size: clamp(3rem, 8vw, 6rem);
      }

      .flower-left {
        left: -8px;
        bottom: 34px;
      }

      .flower-right {
        right: -8px;
        bottom: 30px;
      }

      .section-content {
        position: relative;
        z-index: 1;
      }

      .contact-form {
        display: grid;
        gap: 16px;
      }

      .contact-form-row {
        display: grid;
        gap: 16px;
      }

      .input,
      .textarea {
        width: 100%;
        border: 2px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.5);
        color: var(--text);
        padding: 14px 16px;
        font: inherit;
        outline: none;
        box-shadow: 0 6px 18px rgba(98, 42, 149, 0.08);
      }

      .input::placeholder,
      .textarea::placeholder {
        color: #cfcfcf;
      }

      .input:focus,
      .textarea:focus {
        border-color: var(--heading);
      }

      .textarea {
        min-height: 260px;
        resize: vertical;
      }

      .button {
        justify-self: start;
        border: 0;
        background: var(--ctacolor);
        color: white;
        font: inherit;
        font-weight: 800;
        font-size: 1.05rem;
        padding: 12px 28px;
        border-radius: 999px;
        cursor: pointer;
      }

      .button:hover,
      .button:focus-visible {
        filter: brightness(1.05);
      }

      .site-footer {
        /*background: var(--footer);*/
		background-image: url("../images/r_u_w_background.jpg");
		background-position: center; 
  		background-repeat: no-repeat;
  		background-size: 100% auto; 
		background-position: bottom;
		background-color: white;
		/*color: white;*/
        color: var(--text);
        padding: 48px 0 20px;
        text-align: center;
        box-shadow: var(--shadow2);
      }

      .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px 28px;
        margin-bottom: 52px;
        font-size: 1.1rem;
        font-weight: 700;
      }

      .footer-mark {
        width: min(220px, 45vw);
        aspect-ratio: 1;
        border-radius: 0px;
        margin: 0 auto 0px;
		/*background: rgba(89, 38, 132, 0.96);*/
        background: rgba(255, 255, 255, 0);
      }

      .copyright {
        margin: 0;
        opacity: 0.9;
		background: #FFFFFF;
		
      }

      .imprint-page {
        min-height: 100vh;
        /*display: none;*/
        padding: 48px 0 40px;
      }

      .imprint-page.visible {
        display: block;
      }

      .imprint-card {
        background: rgba(255, 255, 255, 0.75);
        border-radius: 28px;
        padding: 28px;
        box-shadow: var(--shadow);
      }

      .imprint-card h1,
      .imprint-card h2 {
        color: var(--heading);
      }

      .imprint-card h1 {
        margin-top: 0;
        font-size: clamp(2rem, 5vw, 3rem);
      }

      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        color: var(--accent);
        font-weight: 700;
      }

      @media (min-width: 768px) {
        .section {
          padding: 78px 0;
        }

		 .site-footer {
        /*background: var(--footer);*/
		background-image: url("../images/r_u_w_background_middle.jpg");
		  }
		  
        .services-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 22px 48px;
          max-width: 920px;
        }

        .contact-form-row {
          grid-template-columns: 1fr 1fr;
        }

        .flower-left {
          left: -28px;
        }

        .flower-right {
          right: -28px;
        }
		  
/* Logo für mittlere Screens */

      .brand-mark {
        width: 0px;
		/*width: 168px;*/
        height: 52px;
		/*background-image: url("../images/R_u_W_Logo_Initialen.jpg");
        
        border-radius: 14px;		
		background: linear-gradient(135deg, var(--accent), var(--heading));*/
        flex-shrink: 0;
      }

      .brand-text {
        min-width: 0;
      }

      .brand-title {
        margin: 0;
        color: var(--accent);
        font-size: 1.9rem;
        line-height: 0.95;
        font-weight: 800;
      }

      .brand-title span {
        color: var(--heading);
      }

      .brand-subtitle {
        margin: 4px 0 0;
        font-size: 0.9rem;
        color: var(--text);
      }
		  
	  .stoerer {
  position: fixed; /* Fixiert das Element relativ zum Viewport */
  bottom: 20px;    /* Abstand von unten */
  right: 10% !important;     /* Abstand von rechts */
  
  /* Styling (Optional) */
  background-color: var(--accent);
  color: white;
	width: auto;
	min-width: 120px;
  padding: 5px 45px !important;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;   /* Stellt sicher, dass es über anderen Inhalten liegt */
        font-size: clamp(1.4rem, 5vw, 3rem);
        line-height: 0.9;
        font-weight: 800;
        letter-spacing: -0.02em;
  cursor: pointer;
  text-align: center;
	
}

      }

      @media (min-width: 980px) {
        .nav-toggle {
          display: none;
        }

		  
		 .site-footer {
        /*background: var(--footer);*/
		background-image: url("../images/r_u_w_background_wide.jpg");
		  }
		  
        .site-nav {
          position: static;
          display: block;
          box-shadow: none;
          background: transparent;
        }

        .site-nav ul {
          flex-direction: row;
          align-items: center;
          padding: 0;
          gap: 18px;
        }

        .site-nav a {
          padding: 8px 12px;
          position: relative;
        }

        .site-nav a.active::after,
        .site-nav a:hover::after,
        .site-nav a:focus-visible::after {
          content: "";
          position: absolute;
          left: 12px;
          right: 12px;
          bottom: 0;
          height: 2px;
          border-radius: 999px;
          background: var(--ctacolor);
        }

        .about-grid {
          grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
          align-items: start;
          gap: 48px;
        }
    	.about-copy-space {
		  height: 55px;
		  }

        .contact-grid {
          grid-template-columns: 1fr;
        }
		  
/* Logo für große Screens */

      .brand-mark {
        width: 0px;
		/*width: 168px;*/
        height: 52px;
		/*background-image: url("../images/R_u_W_Logo_Initialen.jpg");
        
        border-radius: 14px;		
		background: linear-gradient(135deg, var(--accent), var(--heading));*/
        flex-shrink: 0;
      }

      .brand-text {
        min-width: 0;
      }

      .brand-title {
        margin: 0;
        color: var(--accent);
        font-size: 1.9rem;
        line-height: 0.95;
        font-weight: 800;
      }

      .brand-title span {
        color: var(--heading);
      }

      .brand-subtitle {
        margin: 4px 0 0;
        font-size: 0.9rem;
        color: var(--text);
      }
		  
	  .stoerer {
  position: fixed; /* Fixiert das Element relativ zum Viewport */
  bottom: 20px;    /* Abstand von unten */
  right: 20% !important;     /* Abstand von rechts */
  
  /* Styling (Optional) */
  background-color: var(--accent);
  color: white;
	width: auto;
	min-width: 120px;
  padding: 5px 45px !important;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;   /* Stellt sicher, dass es über anderen Inhalten liegt */
        font-size: clamp(1.4rem, 5vw, 3rem);
        line-height: 0.9;
        font-weight: 800;
        letter-spacing: -0.02em;
  cursor: pointer;
  text-align: center;
	
}
		  
      }

