body, html{
	padding:0;margin:0;
	overflow-x: hidden;
	background-color: #000807;
}


.underline-style {
color: #209882;
font-family: "Roboto Condensed";
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 145%; /* 43.5px */
letter-spacing: 3px;
}

.underline-title {
color: #FFF;
text-align: center;
/* H1 */
font-family: "Roboto Condensed";
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 145%; /* 92.8px */
letter-spacing: 6.4px;
text-transform: uppercase;
margin-top:87px;
}

p {
text-align: left; 
font-size: 18px; 
letter-spacing: 1.8px;
}

.underline-title::after {
  content: "";
  display: block;
  width: 126px;
  height: 8px;
  background: #209882;
  margin: 0 auto;
  margin-top: 15px;
}

.email-projektu{
padding-top: 80px;
}

.underline-style::after {
  content: "";
  display: block;
  width: 101px;
  height: 2px;
  background: #209882;
  margin-top: 15px;
}

@media (max-width: 1200px) {
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  }
  .container {
    margin-left:68px;
	margin-right:69px;

	width: auto;
  }
}

@media (max-width: 1023px) {
	.email-projektu{
	padding-top: 0;
	}
	.bottom-email {
	padding-bottom:40px;
	}
}

.paragraph {
  width: 100% !important;
  max-width: 1054px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 675px) {
  .container {
    margin-left:27px;
	margin-right:26px;
	width: auto;
  }
}

/* ===== Photo Gallery Shared Styles ===== */
.photo-item {
    position: relative;
    max-width: 345px;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.photo-images-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-images {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.photo-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-images img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0);
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.photo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.photo-item:hover .photo-overlay {
    background: rgba(25, 25, 25, 0.5);
}

.photo-item:hover .photo-content {
    opacity: 1;
    transform: translateY(0);
}

.photo-author {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.photo-author::after {
    content: "";
    display: block;
    width: 66px;
    height: 4px;
    background: #209882;
    margin-top: 10px;
}

.photo-title {
    color: #FFF;
    font-family: "Roboto Condensed";
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 1.9px;
}

.photo-label {
    margin-bottom: 40px;
    text-align: center;
}

.photo-label h4 {
    line-height: 38px;
    letter-spacing: 3.8px;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .multi-photos .photo-item {
        width: auto;
        height: auto;
        max-width: 100% !important;
        max-height: 100% !important;
    }
    
    .photo-overlay {
        background: rgba(25,25,25,0.5);
    }
    
    .photo-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    .photo-images {
        height: auto;
    }
    
    .photo-item:hover .photo-images img {
        transform: scale(1);
    }
}