﻿.round {
	width:50px;
	height:50px;
	background-color:#77b55a;
	border:1px solid #4b8f29;
	color:#fff;
	font-size:1rem;

	-webkit-border-radius: 25px; 
	-moz-border-radius: 25px;
	border-radius: 25px; 

	-webkit-box-shadow: 0 0 10px rgba(0,0,0, .75); 
	-moz-box-shadow: 0 0 10px rgba(0,0,0, .75); 
	box-shadow: 2px 2px 15px rgba(0,0,0, .75);
}

.round:hover {
	background:#72b352; 
	border:1px solid #72b352;

	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0, .75);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0, .75);
	box-shadow: 0px 0px 5px rgba(0,0,0, .75);
}


.photo-container {
  width: 100%;
  height: 100%;
}


.cover-bg-img {
    background-size: cover;
    background-position: center top;
	background-repeat: no-repeat;
    height: 100%; 
    width: 100%; 
    position: absolute; 
    top: 0; 
    left: 0;
    z-index: -1; /* Ensure the background image is behind other content */
}


.photo-bg-img {
    background-size: contain;
    background-position: center top;
	background-repeat: no-repeat;
    min-height: 100vh;
}


.photo-bg-descr {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.5em;
    padding: 5px;
    color: #ff0000;
    filter: invert(100%);
    text-align: center
}

@media (max-width: 767px) {

	.photo-bg-img {
      min-height: 50vh;
	}

	.photo-bg-descr {
	  position: absolute; /* or fixed */
	  top: 0;
	  right: 0;
	  width: 150px;
	  height: 75px;
	  
	  font-size: 1em;
	}
}

.hero_bg-img {
    background-size: contain;
    background-position: center top;
	background-repeat: no-repeat;
    min-height: 100vh;
}

.hero_headline {
    color: #fff;
    padding-bottom: 3.2rem;
    font-size: 3.2rem
}

@media (max-width: 1279px) {
    .hero_headline {
        font-size: 5.2rem
    }
}
@media (max-width: 767px) {
    .hero_headline {
        font-size: 4rem
    }
    
    .hero_bg-img {
	    background-position: center top;
    }
}

.hero_header {
    text-align: center
}


.cb-slideshow {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.5em;
    padding: 5px;
    color: #ff0000;
    filter: invert(100%);
}

@media (max-width: 767px) {
	.cb-slideshow {
	  position: absolute; /* or fixed */
	  top: 0;
	  right: 0;
	  width: 150px;
	  height: 75px;
	  
	  font-size: 1em;
	}

}


/* Override css defined in menu.css */
@media screen and (orientation: portrait) and (max-width: 640px) {
	.columns {
	    flex-direction: column-reverse;
	}		
	    
	.columns .left-col {
	    width: 100%;
	}
	
	.columns .right-col {
	    width: 100%;
	    padding-left: 0;
	    max-height: 360px;
	}
	
	.columns.noflex {
		display: block;
	}	
}


.photo-descr-container {
 	margin: 60px 20px 20px 20px;	
}

.photo-date {
    color: #A62B60;
    font-size: 1.8rem;
}

.photo-heading {
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 500;
}

.photo-descr {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 22px;
}


.photo-bg-img-cover {
    background-size: cover;
    background-position: center top;
	background-repeat: no-repeat;
    min-height: 100vh;
}

.columns-cover {
	display: flex;
    flex-direction: column-reverse;
}		
    
.columns-cover .left-col {
    width: 100%;
}

.columns-cover .right-col {
    width: 100%;
    padding-left: 0;
}


.photo-title-container-cover {
	padding: 5px;
	color: #ff0000;
	filter: invert(100%);
	position: absolute; /* or fixed */
	top: 0;
	left: 48px;
	width: 360px;
	font-size: 1em;
}

/* Override css defined in menu.css */
@media screen and (max-width: 767px) {
	.photo-descr-container {
	 margin: 0 20px 20px 20px;	
	}
}


.cards {
    display: grid;
    grid-gap: 1rem /* 16px */;
    gap: 1rem /* 16px */;
}


@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.album-card {
    grid-column: span 1 / span 1;

    display: flex;
    flex-direction: column;

    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
  .album-card {
    width: 100%;
  }
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
