@charset "utf-8";

body{
font-family: "Montserrat", sans-serif;

}
/* Custome Styles */

 .contact-hero {
    background-color: #2B2C27;
    padding: 60px 48px;
  }

  .contact-hero-title {
	font-family: "GFS Didot", serif; 
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
  }
 /* ── CONTACT HERO ── */
  .contact-hero {
    background-color: #2B2C27;
    padding: 60px 48px;
  }

  .contact-hero-title {
	font-family: "GFS Didot", serif; 
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
  }

  /* ── CONTACT BODY ── */
  .contact-body {
    background-color: var(--cream);
    padding: 80px 0 88px;
  }

  .contact-heading {
	font-family: "GFS Didot", serif; 
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #2B2C27;
    letter-spacing: 0.1em;
    margin-bottom: 36px;
  }

  /* Contact list */
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-list li {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d4cfc5;
    padding: 18px 0;
  }

  .contact-list li:first-child {
    border-top: 1px solid #d4cfc5;
  }

  .contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #847951;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #2B2C27;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .contact-link:hover {
    color: #847951;
  }

  /* Photo */
  .contact-photo {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }


  @media (max-width: 767px) {
    .contact-hero { padding: 48px 24px; }
    .contact-body { padding: 56px 0; }
  }






    /* ── HERO ── */
    .about-hero {
      position: relative;
      width: 100%;
      height: 420px;
      overflow: hidden;
    }

    .about-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      filter: grayscale(100%);
      display: block;
    }

    .about-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    }

    .about-hero-title {
      position: absolute;
      bottom: 40px;
      right: 48px;
      z-index: 2;
	font-family: "GFS Didot", serif; 
	font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 900;
      color: #E9E2D8;
      letter-spacing: 0.08em;
      line-height: 1;
    }

    /* ── BIO SECTION ── */
    .bio-section {
      background-color: var(--cream);
      padding: 72px 0 64px;
    }

    .bio-image-wrapper {
      position: relative;
      display: inline-block;
    }

    .bio-image-wrapper::before {
      content: '';
      position: absolute;
      top: -16px;
      left: -16px;
      width: 280px;
      height: 420px;
      background-color: #ddd8cc;
      z-index: 0;
    }

    .bio-image-wrapper img {
      position: relative;
      z-index: 1;
      width: 460px;
      height: 560px;
      object-fit: cover;
      display: block;
    }

    .bio-name {
	font-family: "GFS Didot", serif; 
	font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: #847951;
      letter-spacing: 0.06em;
      margin-bottom: 20px;
    }

    .bio-text {
      font-size: 0.95rem;
      line-height: 1.85;
      color: #2B2C27;
      font-weight: 300;
      max-width: 480px;
    }



    /* ── EDUCATION / WORK ── */
    .info-section {
      background-color: #2B2C27;
    }

    .info-col {
      padding: 64px 56px;
    }

    .info-col:first-child {
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .info-heading {
font-family: "Montserrat", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.06em;
      margin-bottom: 28px;
    }

    .info-detail {
      font-size: 0.82rem;
      color: #bbb;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 400;
      text-transform: uppercase;
    }

    .info-detail strong {
      color: #fffff;
      font-weight: 600;
    }

    .info-body {
      font-size: 0.93rem;
      color: #ccc;
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 32px;
    }

 /* ── BUTTONS ── */
    .btn-outline-cream {
      display: inline-block;
      border: 1.5px solid #fff;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 12px 28px;
      background: transparent;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
      margin-bottom: 12px;
      width: 200px;
      text-align: center;
    }

    .btn-outline-cream:hover {
      background: #fff;
      color: var(--charcoal);
    }
@media (max-width: 767px) {
      .about-hero { height: 300px; }
      .about-hero-title { right: 24px; bottom: 24px; }
      .bio-section { padding: 48px 0; }
      .bio-image-wrapper img { width: 200px; height: 260px; }
      .bio-image-wrapper::before { width: 140px; height: 170px; }
      .info-col { padding: 48px 28px; }
      .info-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    }







.nav-link {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color:#474747;
}

.nav-link:hover {
	color:#b1837c;
	
	
}

.header_clr{
	background: #E9E2D8;
}


/* SECTION BACKGROUND */
.about {
  background: #2B2C27;
  padding: 100px 0;
}

/* LEFT TEXT */
.about-text h1 {
  font-family: "GFS Didot", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 30px;
  color: #E9E2D8;

}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 20px;
  color: #E9E2D8;
}

/* BUTTON */
.about-btn {
	font-family: "Montserrat", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 40px;
  border: 1.5px solid #E9E2D8;
  color: #E9E2D8;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.4s ease;
text-transform: uppercase;

}

.about-btn:hover {
  background-color: #B1837C;
  color: #E9E2D8;
}

/* IMAGE */
.about-img {
  max-width: 500px;
  width: 100%;
  border-radius: 25px;
  border: 2px solid #d8d6cf;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 991px) {
  .about-hero {
    text-align: center;
  }

  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-img {
    margin-top: 40px;
  }
}




#carouselPort{
 max-height: 1000px;
	overflow: hidden;
}

#carouselPort .carousel-item img{
 max-height: 1300px;
	overflow: hidden;
}

.contact{
	background-color: #2B2C27;
	color: #E9E2D8;
	height: 800px;

}

.contact_btn{
		font-family: "Montserrat", sans-serif;
	display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid #E9E2D8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #E9E2D8;
  transition: all 0.4s ease;
}

.contact_btn:hover{
	  background-color: #B1837C;
  color: #ffffff;
}

.logo {
  height: 50px;
  width: auto;
}

.social-icon {
  font-size: 1.5rem;
  color: #2B2C27;
}

.social-icon:hover {
  color: #b1837c;
}

/*Portfolio Button*/

.portfolio-btn {
	font-family: "Montserrat", sans-serif;
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #000000;
  transition: all 0.4s ease;
}

.portfolio-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* single portfolio content */

.single {
	
}

.single-item {
	aspect-ratio: 1 / 1; /* makes perfect square */
  overflow: hidden;
  position: relative;
}

.single-item img {
	width: 100%;
  height: 100%;
  object-fit: cover; /* crops image nicely */

}


/*portfolio*/
.portfolio-item {
  aspect-ratio: 1 / 1; /* makes perfect square */
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops image nicely */
  transition: transform 0.4s ease;
}

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


/* Portfolio Header */
.portfolio-header-content {
    background: url('images/pria_digitalphoto_floral_2.jpg') no-repeat center center/cover;
    height: 50vh;
    position: relative;
    color: white;
    font-size: clamp(2.5rem, 8vw, 100px); /* responsive: min 40px → scales → max 100px */
    font-family: "GFS Didot", serif;
    text-transform: uppercase;
    text-decoration-color: beige;
    z-index: 1;
}


/* Lightbox overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}





  /* Hero Section */
.hero { 
	background: url('images/pria_digitalphoto_floral_2.jpg') no-repeat center center/cover; 
	height: 100vh; position: relative; 
	color: white; 
} 

/* Dark overlay */ 

.hero::before { 
		content: ""; position: absolute; 
		top: 0; left: 0; 
		width: 100%; 
		height: 100%; 
} 

/* Content on top of overlay */ 
.hero-content { 
	font-size: 100px;
	font-family: "GFS Didot", serif; 
	text-transform: uppercase; 
	text-decoration-color: beige; 
	position: relative; 
	z-index: 1; 
}
	
/*footer*/
.footer {
  background-color: #E9E2D8; /* soft beige tone */
  color: #2B2C27;
font-family: "Montserrat", sans-serif;

}

.footer-logo {
  width:120px;
height: auto;
}


.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav a {
  text-decoration: none;
  color: #2B2C27;
  font-size: 1.1rem;
}


.footer-nav a:hover {
  opacity: 0.6;
color: #B1837C;

}

.footer-info h5 {
  font-weight: 500;
}

.footer-info p {
  margin: 0;
}

.footer i {
  font-size: 1.5rem;
  color: #2B2C27;
}

.footer i:hover {
  opacity: 0.6;
  color: #B1837C;

}

		
		
		
		
		
		