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



body {
	
	font-family: 'Pathway Gothic One', sans-serif;
	font-size:18px;
	padding:0;
	margin:0;
	color:#333;
	
	
	}

img { border: none; }
	
.all {
	margin:0 auto;
	width: 1000px;
	height:100%;
	}



/* Header Hintergrundfarbe */
  .header-segment {
    background-color: #fdfdfb; /* heller Grauton, kannst du anpassen */
    color: #dbd0c5; /* dunkle Schrift */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	  
	 padding-top:1.5rem; padding-bottom:1.5rem;
	  
	  background-image: url('https://www.galreidhof.com/images/muster/grid-plus-minus.png'); /* SVG-Muster */
    background-size: 30%; /* Größe des Musters */
    background-repeat: repeat; /* Wiederholung des Musters */
    background-position: center; /* Muster zentrieren */
    background-blend-mode: overlay; /* Überlagerungseffekt */
    overflow: visible; /* Überhang korrekt erlauben */

	  
	   position: fixed; /* Macht den Header fixiert */
  top: 0; /* Positioniert ihn am oberen Rand */
  left: 0; /* Positioniert ihn am linken Rand */
  width: 100%; /* Erstreckt sich über die gesamte Breite */
  z-index: 1030; /* Stellt sicher, dass er über anderen Inhalten liegt (Bootstrap navbar hat oft 1030) */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Ein leichter Schatten für bessere Sichtbarkeit */
	  

  }

  .header-segment .h3 {
	font-family: 'Parisienne', cursive;
    font-weight: bold;
    font-size: 44px;
    color:#cba675; /* dunkles Blau für Titel */
  }

 .header-segment p {

    color:#333; /* dunkles Blau für Titel */
  }


  .header-segment address {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
  }

  .header-segment a {
    color: #cba675;
    text-decoration: none;
  }

  .header-segment a:hover {
    text-decoration: underline;
  }


/* Eigene Navbar-Hintergrundfarbe */
.navbar-custom {
  background-color: #fff; /* z. B. ein dunkles Braun/Schwarz */
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #dbd0c5; /* Helle Schrift */
}

.navbar-custom .nav-link:hover {
  color: #cba675; /* Akzentfarbe beim Hover */
}

.navbar-custom .navbar-toggler {
  border-color: #dbd0c5;
}











.main-navigation {
  /* ... deine bestehenden Stile ... */
  position: fixed; /* Macht die Navigation fixiert */
  top: 172px; /* Dieser Wert muss der Höhe des .header-segment entsprechen */
  left: 0; /* Positioniert sie am linken Rand */
  width: 100%; /* Erstreckt sich über die gesamte Breite */
  z-index: 1029; /* Etwas niedriger als der Header, aber immer noch hoch */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Ein leichter Schatten */
}

.hero-slider {
  /* ... deine bestehenden Stile ... */
  /* Die Höhe des Header-Segments (py-4 macht ca. 120px) + die Höhe der Navigation (ca. 60px) */
  /* Passe diesen Wert genau an, wenn sich die Höhen ändern! */
  margin-top: 230px; /* Geschätzte Gesamthöhe von Header und Navigation */
  position: relative; /* Wichtig, da der Slider nicht fixed sein soll */
  z-index: 1; /* Stellt sicher, dass er unter den fixed Elementen liegt */
}



/* Container für Button */
.mobile-toggler-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}

/* Menütext */
.menu-label {
  color: #5c4430;
  margin-right: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hamburger-Wrapper */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 22px;
  width: 30px;
  position: relative;
}

/* Einzelne Linien */
.bar {
  height: 3px;
  width: 100%;
  background-color: #5c4430;
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.4s ease;
}

/* Animation: zum X */
.navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Optional: Kein Rahmen beim Klick */
.navbar-toggler:focus {
  outline: none!important;
  box-shadow: none!important;
}




/* Navbar-Schrift anpassen */
.main-navigation .navbar-nav .nav-link,
.main-navigation .navbar-brand {
  font-family: 'Pathway Gothic One', sans-serif;
  font-weight: 300;
  font-size: 21px;
  color:#595147; /* dunkles Blau für Titel */
}

.navbar-nav .nav-link.active {color:#d5b589!important;}

.main-navigation li {
margin-top:0px;
padding-top:0px;
padding-right: 4px;
padding-left: 4px;
}

.main-navigation  ul {
list-style-type: none;

width: 100%;
margin: 0 auto;
text-align: center;
}

.main-navigation .nav-item {
  flex: 1;
  text-align: center;
  position: relative; /* nötig für ::after */
  border-right: none; /* entfernen */
}

.main-navigation .nav-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px; /* Höhe des Strichs */
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}




.border-radius {border-radius:8px;}

.footer-section {background-color:#1f1d1b; font-family: 'Pathway Gothic One', sans-serif;} 

.footer-section h3 {
	font-family: 'Pathway Gothic One', sans-serif;
    font-size: 30px;
    color:#cba675; /* dunkles Blau für Titel */
  }

.footer-logos {padding-top:30px;}

/* Logo: Villnöss */
.footer-logos .logo-funes img {
  max-height: 60px;
  width: auto;
	margin-top:-12px;
	padding-right:10px;
}

/* Logo: Alpine Pearls */
.footer-logos .logo-alpine img {
  max-height: 60px;
  margin-top:14px;
  width: auto;
  padding-right:10px;
}

/* Logo: Südtirol */
.footer-logos .logo-suedtirol img {
  max-height: 60px;
  width: auto;
	margin-top:12px;
}




.body-section h2 {font-family: 'Parisienne', cursive;
    font-size: 44px;
    color:#cba675;
}



/* Custom Button Style */
.btn-primary {
  background-color: #d5b589!important;
  border-color: #d5b589!important; /* Passen Sie auch die Rahmenfarbe an */
  color: #fff!important; /* Textfarbe bleibt weiß für gute Lesbarkeit */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:visited {
  background-color: #c4a67b!important; /* Etwas dunklerer Ton für den Hover/Fokus-Zustand */
  border-color: #c4a67b!important;
  color: #fff!important;
}

/* Optional: Für aktive/geklickte Buttons oder wenn der Button disabled ist */
.btn-primary:active:focus,
.btn-primary.active:focus {
  box-shadow: 0 0 0 0.25rem rgba(213, 181, 137, 0.5)!important; /* Leichter Schatten für den Fokusring */
}

.btn-primary:disabled {
  background-color: #d5b589!important; /* Standardfarbe auch für disabled */
  border-color: #d5b589!important;
  opacity: 0.65!important; /* Standardmäßig etwas transparenter, wenn disabled */
}





	
#header_bar_full {
	width:100%;
	height:138px;
	background-color:#333;
	margin:0;
	padding:0;
	}
	
#header_bar {
	margin:0 auto;
	width:1000px;
	height:138px;
	background-color:#333;
	color:#cba675;
	
	}
	
	
#logo {
	width:1000px;
	margin:0 auto;
	
	}
	
	
#left {
	margin-top:6px;
	float:left;
	width:130px;


	}
	
#middle {
	margin-top:10px;
	width:520px;
	float:left;
	}
	
#right {
	margin-top:12px;
	float:right;
	width:350px;

	text-align:right;
	}
	
	
	
#menu {
		
	text-align:center;
	height:60px;
	}	
	
#pre_header {
	background-image:url("images/grafik_elemente/shadow-slider-black-inverted.png");
		background-repeat:no-repeat;
		background-position:center bottom 6px;
	width:100%;
	height:17px;
	
	
	}
	
#anschrift {
	text-align:right;
	margin-top:30px;
	}
	
#header {
	clear:both;

	background-color:#FFF;
	}
	
.links_einzug {margin-left:10px;}
.links_einzug_2 {margin-left:30px;}
.rechts_einzug {margin-right:10px;}
.rechts_einzug_2 {margin-right:30px;}



.main-navigation .navbar-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}




.body-section {
  background-color: #fdfdfb;
  color: #333;
}

.footer-section {
  background-color: #1f1d1b;
  color: #dbd0c5;
  font-size: 0.95rem;
}

.footer-section a img {
  vertical-align: middle;
  max-height: 68px;
}


.image-zoom-container {
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

.zoom-image {
  transition: transform 0.4s ease;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.zoom-image:hover {
  transform: scale(1.08);
}





.grey {color:#CCC;}

#content {
	height:100%;
	width:1000px;

	}

#content_left {
	float:left;
	width:300px;
	height:100%;
	position:relative;
	
	}
	
	
#content_middle{
	float:left;
	width:14px;
	height:344px;
	
	
	
	}


#content_right {
	float:right;
	width:686px;
	height:100%;
	position:relative;
	
	
	}


#footer {
	

	clear:both;
	width:1000px;
	
	background-color:#00F;
	

	
	}


#footer_left {
	float:left;
	width:500px;
	height:100px;
	font-size:14px;
	}

#footer_right {
	float:right;
	width:500px;
	height:100px;
}

#footer_end {
	clear:both;
	}


.honeypot { display: none; }


.green {
	color:#558000;
	}
	
.brown {
	
	color:#cba675;
	}
	
.big {
	
	font-size:32px;
	color:#558000;
	}

.big-price {
	
	font-size:24px;
	color:#558000;
	}
	
.table_1 {
	
	width:260px;
	}


.center {
	text-align:center;
	margin: 0 auto;
	}
	
	
.titel_header {
	margin-left:120px;
	margin-top:-110px;
	font-size:60px;
	
	}
	
.sub_titel_header {
	margin-left:120px;
	
	
	}
	
	
#flaggen {
	margin-top:-20px;
	margin-right:130px;
	
	}
	
	
#map {
	
	width: 600px;
	height: 350px;
	}
	
.little {

	font-size:14px;
	}

	
	
.title {
	font-family: 'Quintessential', cursive;
	font-size:40px;
	color:#FFF;
	
	
	}
	
	
.adresse {
	marginp:-6px;
	font-size:14px;
	
	}
	
.font_adel {
	
	font-family: 'Parisienne', cursive;
	font-size:26px;
	
	}
	
.t_1 {
	
	width:130px;
	background-color:#CCC;
	padding-left:8px;
	}
	
.t_2 {
	
	padding:5px;
	background-color:#CCC;
	
	}
	
.t_3 {
	
	width:130px;
	background-color:#CCC;
	padding-left:8px;
	}

.t_4 {
	
	padding:5px;
	background-color:#CCC;
	
	}
	
.t_height {
	height:40px;
	
	
	
	}

/* Inset, by Dan Eden */ hr.style-six { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); }


A.header_link:link{
	
	color:#fff;
	text-decoration: none; 
	
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
}
A.header_link:visited{
	
	color:#fff;
	text-decoration:none; 
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
	
}
A.header_link:hover{

	color:#cba675;
	text-decoration: none; 
	width:auto;
	height:auto;
	display:inline-block;

	
}



A.menu:link{
	
	color:#333;
	text-decoration: none; 
	
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
}
A.menu:visited{
	
	color:#333;
	text-decoration:none; 
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
	
}
A.menu:hover{

	color:#cba675;
	text-decoration: none; 
	width:auto;
	height:auto;
	display:inline-block;

	
}



A.menu_x:link{
	
	color:#558000;
	text-decoration: none; 
	pointer-events: none;
   cursor: default;
	
}
A.menu_x:visited{
	
	color:#558000;
	text-decoration:none; 
 pointer-events: none;
   cursor: default;
	
	
}
A.menu_x:hover{

	color:#558000;
	text-decoration: none; 
	pointer-events: none;
   cursor: default;

	
}


A.admin_link:link{
	
	color:#cba675;
	text-decoration: none; 
	
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
}
A.admin_link:visited{
	
	color:#cba675;
	text-decoration:none; 
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
	
}
A.admin_link:hover{

	color:#558000;
	text-decoration: none; 
	width:auto;
	height:auto;
	display:inline-block;

	
}




A.admin_2:link{
	
	color:#999;
	text-decoration: none; 
	font-size:28px;
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
}
A.admin_2:visited{
	font-size:28px;
	color:#999;
	text-decoration:none; 
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
	
}
A.admin_2:hover{
font-size:28px;
	color:#558000;
	text-decoration: none; 
	width:auto;
	height:auto;
	display:inline-block;

	
}



A.menu_back:link{
	
	color:#333;
	text-decoration: none; 
	
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
}
A.menu_back:visited{
	
	color:#333;
	text-decoration:none; 
   -moz-transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
	
	
}
A.menu_back:hover{

	color:#558000;
	text-decoration: none; 
	width:auto;
	height:auto;
	display:inline-block;

	
}




A.link_image:link{
	
border-style: none;
	
}
A.link_image:visited{
	
border-style: none;
	
}
A.link_image:hover{

border-style: none;
}












   #slides {
      display: none;
	  
	  background-image:url('images/grafik_elemente/shadow-slider-black.png');
	  background-position:center bottom 11px;
	  background-repeat:no-repeat;
	 position:relative;
	 z-index:44;
	
}
	

 

    #slides .slidesjs-navigation {
      margin-top:3px;
	   font-size:26px;
	 
	
    }

    #slides .slidesjs-previous {
	
      margin-right: 5px;
      float: right;
	  font-size:26px;
    }

    #slides .slidesjs-next {
      margin-right: 10px;
	  font-size:26px;
      float: right;
    }

    .slidesjs-pagination {
      margin: 6px 0 0;
      float: right;
      list-style: none;
	  
    }

    .slidesjs-pagination li {
      float: left;
      margin: 0 1px;
    }

    .slidesjs-pagination li a {
      display: block;
      width: 13px;
      height: 0;
      padding-top: 13px;
      background-image: url(images/slider_buttons/pagination.png);
      background-position: 0 0;
      float: left;
      overflow: hidden;
    }

    .slidesjs-pagination li a.active,
    .slidesjs-pagination li a:hover.active {
      background-position: 0 -13px
    }

    .slidesjs-pagination li a:hover {
      background-position: 0 -26px
    }

    #slides a:link,
    #slides a:visited {
      color: #333;
	  text-decoration:none;
    }

    #slides a:hover,
    #slides a:active {
      color: #9e2020;
	  text-decoration:underline;
    }

    .navbar {
      overflow:hidden
	  
    }

  
    #slides {
      display: none;
	
    }

    .container {
      margin: 0 auto;
    }



@media (max-width: 1200px) {

.main-navigation .navbar-nav .nav-link, .main-navigation .navbar-brand {font-size:18px!important;}
	
}



@media (max-width: 991.98px) {
.main-navigation .nav-item {border-right: none !important; flex: none; text-align: left;}
.navbar-toggler-icon {background-image: none !important;}
	
	 .navbar-toggler {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
	
	 /* Trennstriche entfernen */
  .main-navigation .nav-item::after {
    display: none !important;
  }

  /* Menü zentriert */
  .main-navigation .navbar-nav {
    flex-direction: column !important;
    align-items: center !important;
  }

  .main-navigation .nav-item {
    text-align: center;
    width: 100%;
    padding: 8px 0;
  }

  .main-navigation .nav-link {
    display: inline-block;
    width: auto;
  }
	
	.main-navigation {top:217px!important;}
	.hero-slider {margin-top:267px!important;}
	
	
	.mobile-toggler-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
  }

  .navbar-toggler.custom-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    gap: 10px;
    padding: 0;
  }

  .menu-label {
    color: #5c4430;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 20px;
    width: 24px;
    position: relative;
  }

  .bar {
    height: 2px;
    width: 100%;
    background-color: #5c4430;
    margin: 3px 0;
    transition: 0.4s;
  }

  .navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}




    /* For tablets & smart phones */
@media (max-width: 767px) {
	
body {padding-left: 0px; padding-right: 0px;}
.container {width: auto}
.body-section {padding-left:20px!important; padding-right:20px!important;}
.body-section h2 {text-align:center!important;}
.body-section p {text-align:center!important; padding-left:20px!important; padding-right:20px!important;}
.body-section .zusatzinfos {text-align:center!important; padding-left:20px!important; padding-right:20px!important;}
.hero-slider, #galreidhofCarousel {min-height: 300px;}
.carousel-item, .carousel-item img {height: 300px; object-fit: cover; object-position: center;}
.header-segment .img-fluid {width:80px!important; height:80px!important;} 
.dissappear {display: none!important;}
.main-navigation {top:131px!important;}
.hero-slider {margin-top:180px!important;}
.footer-section p {text-align:center!important; padding-left:20px!important; padding-right:20px!important; width:100%;}
.linke-spalte {margin-top:44px!important; padding:0!important;}
.rechte-spalte {padding:0!important;}
.border-radius {border-radius:0px!important;}
.footer-section h3 {text-align:center!important;}
.footer-logos {width:50%!important; margin:0 auto!important;}
.image-zoom-container {margin-top:50px!important;}
.big-price {font-size:17px!important;}
#map {width:100%!important;}
.main-navigation .nav-item {padding: 2px 0!important;}	
.header-segment .h3 {font-size:35px!important;}
.header-segment {padding-top:10px!important; padding-bottom:10px!important;}
}

    /* For smartphones */
    @media (max-width: 480px) {
      .container {
        width: auto
      }
    }

    /* For smaller displays like laptops */
    @media (min-width: 768px) and (max-width: 979px) {
      .container {
        width: 100%      }
    }

    /* For larger displays */
    @media (min-width: 1200px) {
      .container {
        width: 100%;
		
		
      }
    }
 
 
 
 
 
 
 
