@charset "UTF-8";
body {
	margin: 0;
	
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



.navbar-brand img{
	width:50%;
}

.navbar-brand {
	padding-top: 2%;
	padding-left: 13%;
}
.navbar-brand:hover .navbar-logo {
  opacity: 0.8;
}





.navbar {
  padding-top: 20px;
	padding-right: 50px;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.navbar-logo {
  height: 40px;
  width: auto;
  display: block;
	
  transform: scale(4.8); 
  transform-origin: left center;
}

.navbar-brand {
  margin-right: 0;
}


.navbar-collapse {
  flex-grow: 0;
}


.navbar-nav {
  gap: 40px;
}




/* DESKTOP */
@media (min-width: 992px) {
	.navbar-brand img{
	width:70%;
}
  .navbar-brand {
	padding-top: 3%;
	padding-left: 12%;
}

}

/* TABLET */
@media (max-width: 991.98px) {
	.navbar-brand img{
	width:70%;
}
  .navbar-brand {
	padding-top: 5%;
	padding-left: 25%;
}

}

/* MOBILE */
@media (max-width: 767.98px) {
  	.navbar-brand img{
	width:80%;
}
  .navbar-brand {
	padding-top: 10%;
	padding-left: 20%;
}
}









/* MAIN PAGE */



/* FULLSCREEN SLIDER */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

/* IMAGE */
.hero-img {
  height: 100vh;
  object-fit: cover;
}

/* TEXT CENTERED */
.custom-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: center;
	
	 font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

/* TEXT STYLE */
.custom-caption h2 {
  font-size: 3rem;
  font-weight: 500;
}

.custom-caption p {
  font-size: 1.2rem;
}

/* DARK OVERLAY */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}



#heroCarousel {
  margin-bottom: 40px;
}





/* PHOTOGRAPHY PAGE */

/* CONTENT */
.portfolio-content {
  padding: 30px;
}

/* MASONRY-LIKE GALLERY */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.01);
  opacity: 0.95;
}

/* Optional visual variation */
.gallery-item.wide img,
.gallery-item.tall img {
  width: 100%;
}

/* Hidden state for filtering */
.gallery-item.hide {
  display: none;
}

/* MODAL */
.gallery-modal-content {
  background: transparent;
  border: none;
}

.gallery-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 20px 60px;
}

.modal-gallery-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: white;
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.85);
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* TABLET */
@media (max-width: 991.98px) {
  .masonry-gallery {
    column-count: 2;
  }

  .sidebar-inner {
    position: static;
  }

  .filter-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* MOBILE */
@media (max-width: 767.98px) {
  .masonry-gallery {
    column-count: 1;
  }

  .portfolio-content {
    padding: 20px;
  }

  .gallery-modal-body {
    padding: 20px 20px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* MODAL BACKDROP SMOOTH FADE */
.modal.fade .modal-dialog {
  transform: scale(0.92);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

/* IMAGE ZOOM EFFECT */
.modal-gallery-image {
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal.show .modal-gallery-image {
  transform: scale(1);
  opacity: 1;
}

/* NAV BUTTONS FADE IN */
.gallery-nav,
.modal-close-btn {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal.show .gallery-nav,
.modal.show .modal-close-btn {
  opacity: 1;
}

/* DARK BACKDROP SMOOTHING */
.modal-backdrop.show {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}


/* ABOUT PAGE */
/* spacing */
.about-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

/* title */
.about-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
	
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

/* text */
.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

/* image */
.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.about-img {
  width: 100%;
  max-width: 400px;

  background: #fff;
  padding: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08),
              0 30px 80px rgba(0,0,0,0.12);
}

/* button */
.resume-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.resume-btn:hover {
  background-color: #650A18;
  color: #F2DFCC;
}


/* FOOTER */
.site-footer {
  background-color: #650A18;   
  color: #fff;
  padding: 10px 0;
  
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
	color: #F2DFCC;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
	
}



.fade-in {
	animation: fade 2.0s ease;
}

@keyframes fade {
	from {opacity:0;}
	to {opacity:1;}
}



/* DIGITAL ART PAGE */
.project-card {
  cursor: pointer;
  overflow: hidden;
}

.card-img {
  width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .card-img {
  transform: scale(1.05);
}

/* MODAL */
.project-modal {
  border: none;
	background-color: #fff7f0;
}

.project-media {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.modal-body {
  padding: 40px;
}

#modalTitle {
  margin-bottom: 20px;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
	
}

#modalDescription {
  
  color: #444;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.digitaldesign-wrapper {
	margin-bottom: 40px;
}








#modalTitleV {
	width: 100%;
    margin-bottom: 20px;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
	
}

#modalDescriptionV {
  line-height: 1.6;
  color: #444;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}





/* CONTACTS PAGE */

.contact-wrapper {
  padding: 100px 40px;

  background-image: url("images/portraitsmain5desktop.jpg"); /* 👈 твоє фото */
  background-size: cover;
  background-position: center;

  position: relative;
	
  margin-bottom: 40px;
}

/* overlay для читабельності */
.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

.contact-wrapper .container {
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.contact-title {
  font-size: 3rem;
  margin-bottom: 30px;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.contact-info {
  font-size: 1rem;
  margin-bottom: 10px;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

/* SOCIAL LINKS */
.socials a {
  display: inline-flex;
  margin-right: 15px;
	margin-top: 20px;
  text-decoration: none;
  width: 20px;
  height: 20px;
}



/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 0;
  margin-bottom: 20px;
  background: transparent;
	
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 1px solid black;
}

/* BUTTON */
.contact-form button {
  border: 1px solid black;
  background: transparent;
  padding: 10px 20px;
  transition: all 0.3s ease;
	font-family: "Cutive Mono", monospace;
  font-weight: 400;
}

.contact-form button:hover {
  background: black;
  color: white;
}
