/*
    Theme Name: Lonely
    Theme URL: https://bootstrapmade.com/free-html-bootstrap-template-lonely/
    Author: BootstrapMade
    Author URL: https://bootstrapmade.com
*/
/* ==== Google font ==== */

@font-face {
	font-family: Angelina;
	src: url(../fonts/angelina/angelina.ttf);
}

@font-face {
	font-family: 'DK Lemon Yellow Sun';
	src: url(../fonts/dk_lemon_yellow_sun/dk_lemon_yellow_sun.otf);
}

body {
    width: 100%;
    height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6em;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    font-family: Angelina, sans-serif;
    font-weight: 400;
	line-height: 0.7;
}

blockquote {
	font-family: 'DK Lemon Yellow Sun', arial, sans-serif;
	font-size: 20px;
	border: none;
	text-align: center;
	margin-bottom: 100px;
}
blockquote .quote-quotee{
	font-style: italic;
    font-weight: normal;
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
}

a[href*=mailto]{
	white-space: nowrap;
}

.light {
    font-weight: 400;
}

img.img-responsive {
	margin-bottom: 20px;
}


/* ------- Navigation ------------ */
#navigation {
	transition: all 0.5s ease;
	/* background: #fff; */
	z-index: 9999;
	width:100%;
	box-sizing:border-box;
	border-bottom: 1px solid #eee0;
	/* box-shadow:0px 0px 20px rgba(0, 0, 0, 0.1); */
	text-align: center;
	margin: 0 auto;
}

#navigation-sticky-wrapper.is-sticky #navigation {
	background: #fff;
	border-bottom-color: #eee;
	box-shadow:0px 0px 20px rgba(0, 0, 0, 0.1);
}

#navigation .container {
	margin-left: 0;
}

.navbar {
    margin-bottom: 0;
}

.navbar-brand {
    font-weight: 700;
}


.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    /* background-color: rgba(255,255,255,.6); */
}

#navigation-sticky-wrapper.is-sticky .nav.navbar-nav {
  background-color: rgba(255,255,255,.6);
}

#menu .nav.navbar-bar {
	text-align: center;
	float: none;
	margin: 0 auto;
}

.navbar-custom ul.nav {
	text-align: center;
	float: none;
	margin: 0 auto;
}
.navbar-custom ul.nav li {
	float: none;
	display: inline-block;
	text-align: center;
}
.navbar-custom ul.nav li a {
	font-size: 14px;
	letter-spacing: 1px;
	color: white;
	text-transform: uppercase;
	font-weight: 700;
}

#navigation-sticky-wrapper.is-sticky .navbar-custom ul.nav li a {
    color: #444;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    background-color: rgba(255,255,255,.2);
    color: white;
}

#navigation-sticky-wrapper.is-sticky .navbar-custom .nav li a:hover, #navigation-sticky-wrapper.is-sticky .navbar-custom .nav li a:focus, #navigation-sticky-wrapper.is-sticky .navbar-custom .nav li.active {
	background-color: rgba(84, 71, 71, 0.2);
}

.navbar-toggle {
    padding: 4px 6px;
    font-size: 14px;
    color: #444;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}

#navigation-sticky-wrapper.is-sticky .navbar-toggle {
	color: #444;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Heart Anim */
#heart {
    position: relative;
    width: 100px;
    height: 90px;
	z-index: 9999;
	opacity: 0.75;
	position: absolute;
	top: 50%;
	margin: -50px auto 0 auto;
	left: 0;
	right: 0;
}
#heart:before,
#heart:after {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: #f5a9a5;
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
       -moz-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
         -o-transform-origin: 0 100%;
            transform-origin: 0 100%;
}
#heart:after {
    left: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
       -moz-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
         -o-transform-origin: 100% 100%;
            transform-origin :100% 100%;
}



@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}

/* Orig Anim */
@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
}

#load {
  background-color: #FF4136;
  z-index: 9999;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #FF4136;
  box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
  animation: shadowSpin 1s ease-in-out infinite;
}

#heart {
  animation: heartbeat 2.5s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */

.home-section {
    padding-top: 120px;
    padding-bottom: 110px;
	display:block;
    position:relative;
    z-index:120;
}

.section-heading {
	margin-bottom: 50px;
}

.section-heading h2 {
	margin-bottom: 10px;
	font-size: 100px;
}
.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}



/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;	
	background-color: #090909;
	height: 500px;
}

#headerimg {
	background: url(../img/gallery/a_Blankenese_11.jpg) no-repeat top left;
    width: 100%;
    height: 100%;
    background-size: 100%;
	margin-top: -53px;
	background-position-y: -262px;
}


#intro.intro {
	/*padding: 500px 0 150px 0;*/
}


@media (min-width: 1400px) {
	#gallery .container {
		width: 1380px;
	}
}

@media (min-width: 1600px){
	#gallery .container {
		width: 1580px;
	}
}

@media (min-width: 1800px){
	#gallery .container {
		width: 1780px;
	}
}

#gallery{
	padding-top: 0px;
}

#about {
	padding-bottom: 0px;
}

.emoji{
	padding-left: 15px;
}

.intro .slogan {
	text-align: center;

}

.intro .page-scroll {
	text-align: center;
}


.intro .page-scroll a {
	color: #fff;
}

.pswp__bg {
	background-color: #FFF;
}

.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
	background-color: rgba(255, 255, 255, 0.3);
}

.pswp__caption__center {
	color: black;
}

.pswp__counter {
	color: black;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	font-family: Montserrat, sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	text-shadow: -1px 0 1px #000;
}

.intro .slogan h4 {
	color: #fff;
	text-shadow: -1px 1px 1px #000;
}


/* ===========================
--- About
============================ */

#about{
	background-image: url(../img/bg/right1.png), url(../img/bg/left3.png);
	background-repeat: no-repeat, no-repeat;
	background-position: right top, left calc(100% - 50px);
}

.facts-header {
    font-weight: bold;
    font-size: larger;
    color: #52a979;
}

.facts-fact {
	color: white;
}

.facts-jumpto {
	margin-top: 20px;
}

.facts-header, .facts-jumpto{
	display: none;
}

.icon {
	display: inline-block;
	text-align: center;
	vertical-align: top;
}
.icon .glyph-icon {
	padding: 10px;
	display: block;
	font-family:"wedding";
	line-height: 1;
	color: #fff;
}

.icon .glyph-icon:before {
	margin-left: 0;
	font-size: 100px;
}

/* ==========================
--- Anreise
============================= */


#location{
	background-image: url(../img/bg/left2.png);
	background-repeat: no-repeat;
	background-position: left 150px;
}

span.strong {
    font-weight: bold;
}

iframe {
    margin-bottom: 50px;
}

/* ==========================
--- Accomodation
============================= */



#accommodation{
	background-image: url(../img/bg/right3.png);
	background-repeat: no-repeat;
	background-position: right top;
}


.item {
    margin: 10px;
}

.item img {
    display: block;
    width: 100%;
    height: auto;
}	


/* ===========================
--- RSVP
============================ */

.form-wrapper {
	background: #f9f9f9;
	padding: 40px;
	 border-radius: 6px;
}

#rsvp{
	background-image: url(../img/bg/right2.png);
	background-repeat: no-repeat;
	background-position: right top;
}

form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 4px;
	border: 1px solid #eee;
	-webkit-box-shadow: none;
	box-shadow:  none;
	font-size: 16px;
	margin-bottom: 20px;
	background: #fefefe;
	color: #888;
}

form#contact-form input,form#contact-form select {
	height: 40px;
}

form#contact-form button {
	border-radius: 4px;
	height: 40px;
	text-transform: none;
	font-size: 16px;
	font-weight: 700;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
	background: #fff;
}

form#contact-form .form-group label {
	text-align: left !important;
	letter-spacing: 1px;
	font-size: 16px;
	width: auto;
    display: inline-block;
    vertical-align: text-bottom;
    height: 40px;
    margin-bottom: 0;
    padding-left: 20px;
	padding-right: 40px;
}

form#contact-form input[type=radio] {
	width: 35px;
	display: inline-block;
	height: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
}

form#contact-form .form-group .form-control.form-spinner{
	text-align: center;
	width: 3em;
	display: inline-block;
	padding-left: 0.5em;
	margin-right: 0.5em;
	margin-bottom: 0;
}
form#contact-form .between-controls {
	margin-right: 0.5em;
}

form#contact-form .form-group{
	text-align: start;
}

form#contact-form .form-group .form-control.with-icon {
    width: calc(100% - 50px);
    display: inline-block;
}

form textarea.form-control.with-icon+.form-info-icon {
    vertical-align: top;
}


/* Tooltip Color */
.white-tooltip + .tooltip > .tooltip-inner {
	background-color: #ffffff;
	color: black;
	border: 2px solid #b2d9b3;
}
.tooltip.left .tooltip-arrow {
	border-left-color: #b2d9b3;
}


.form-wrapper.multiple-attendees .text-single, .form-wrapper.single-attendee .text-multi{
	display: none!important;
}

.rsvp-sent #sendmessage-positive.will-attend{
	display: block!important;
}
.rsvp-sent #sendmessage-negative.wont-attend{
	display: block!important;
}

.validation {
    color: red;
    display:none;
    margin: 0 0 20px;
    font-weight:400;
    font-size:13px;
}

.sendmessage {
    color: green;
    border:1px solid green;
    display:none;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#errormessage {
    color: red;
    display:none;
    border:1px solid red;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
	display:block;
}

.contact-info-box{
	line-height: 1.6em;
}

.contact-info{
	text-align: start;
}

/* ===========================
--- Contact
============================ */

#contact{
	background-image: url(../img/bg/left_bottom1.png), url(../img/bg/left2.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left bottom,  left top;
	
}

/* ===========================
--- Footer
============================ */

footer {
	text-align: center;
	padding: 20px 0 10px;	

}

footer p {
	font-family: 'DK Lemon Yellow Sun', arial, sans-serif;
	font-size: 20px;
	text-align: center;
}

footer a {
}

footer a:hover {
}
.credits {
}

/* ==========================
Parallax
============================= */

#separator {
	background-image: url(../img/pictures/pxbg4.jpg);
}

#separator .icon {
	margin-bottom: 20px;
}

#separator span {
	color: #fff;
}

#separator:after {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
	background-repeat: no-repeat;
}

.margin{	
    width: 100%;
    height: 40px;
    display: inline-block;
}


/* ===========================
--- Elements
============================ */

.btn {

    font-weight: 700;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a.btn:hover {
	color: #fff;
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* Media queries */

@media (max-width:768px) {
	
	.col-xs-6 {
		margin-bottom: 30px;
	}
	
	.icon .glyph-icon:before {
		margin-left: 0;
		font-size: 50px;
	}
	
	#headerimg {
		background: url(../img/pictures/bg4_mobile_s.jpg) no-repeat top left;
		background-size: 100%;
	}
	
	.intro {
		height: 230px;
	}
	
	#separator .row .margin{
		display: none;
	}
	.section-heading h2 {
		font-size: 80px;
	}
	form#contact-form .form-group .radio-option{
		display: block;
	}
	form#contact-form .form-group label {
		padding-right: 0px;
	}
	
	.md-block{
		display: block;
	}
	
	p {
		text-align: start;
	}
}

@media (max-width:480px) {

	.navbar-custom .nav.navbar-nav {
		background-color: rgba(255, 255, 255, 1);
		
	}
 
	.navbar-custom ul.nav li a {
		color: #444;
	}
	
	/*
	#navigation-sticky-wrapper #navigation {
		background: #fff;
		border-bottom-color: #eee;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	}
	*/
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}

	
	.page-scroll a {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		font-size: 20px;
	}
	
	.form-group .radio-option{
		display: block;
	}

	form#contact-form .form-group .radio-option label{
		padding-left: 5px;
	}
}