@import 'reset.css';
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/

:root {
  --color-gold: #f0a251;
  --color-light-dark: #141a1c;
  --color-dark: #0c1315;
  --color-gray: #dddddd;
  --color-white: #ffffff;
  --color-dark-gray: #a6a6a6;
}

::-moz-selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-gold);
  color: var(--color-white);
}

p {
  text-align: justify;
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-light-dark);
}

/* Custom */

.text-center{
  text-align: center;
}

.snap-wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.snap-section {
  scroll-snap-align: start;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 0 30px;
}

.suptitle {
  font-size: 22px;
}

.title {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 30px;
}

@media screen and (max-width:767.98px) {
  .suptitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }  
}

.btn-outline {
  color: var(--color-white) !important;
  background-color: var(--color-light-dark);
}

.btn-outline:hover {
  color: var(--color-white);
  background-color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

@media screen and (max-width:767.98px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width:575.98px) {
  .title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .suptitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}


/* ------------------- */
/* Nav Content */
/* ------------------- */

.wrapper-header {
  padding: 20px 30px;
}

#mobile-nav .logo {
  font-size: 23px;
  margin-top: 13px;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  #navigation {
    display: none;
    /* Hide the menu initially */
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    width: 100%;
    text-align: center;
  }

  #openmenu {
    display: block;
    /* Show the hamburger icon on mobile */
  }

  .wrapper-header {
    padding: 5px 20px;
  }
}

@media screen and (min-width: 768px) {
  #mobile-nav {
    left: -290px !important;
  }

  #openmenu {
    margin-right: 10px;
  }
}


/* ------------------- */
/* Header Content */
/* ------------------- */

.wrapper-header-content {
  overflow: hidden;
  position: relative;
  
}
.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  /* Full screen width */
  height: 100vh;
  /* Full screen height */
  overflow: hidden;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 3s ease, transform 4s ease;
  /* Smooth transition */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  transform: scale(1.1);
  /* Smooth zoom-in effect */
}

.hero-title {
  font-size: 120px;
  font-weight: 900;
  line-height: 130px;
  margin-bottom: 30px;
}

.logo {
  color: var(--color-gold);
  text-transform: none;
  font-size: 25px;
  font-weight: 900;
  text-shadow:
    0 0 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

@media screen and (max-width:575.98px) {
  .header-content {
    text-align: center;
  }

  .hero-title {
    font-size: 65px;
    line-height: 70px;
  }
}

/* ------------------- */
/* Book Content */
/* ------------------- */

.wrapper-book-content {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.wrapper-book-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent, var(--color-light-dark)), url('../images/bg-rent.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.book-content {
  width: 50%;
  margin-left: auto;
}

.book-action {
  margin-top: 40px;
  align-items: center;
  gap: 20px;
  position: relative;
}

.book-action img {
  width: 250px;
}

.book-action a img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: ease-in-out .3s;
}

.book-action a:hover img:first-child {
  opacity: 0;
}

.book-action .btn {
  background-color: var(--color-dark);
  border: 2px solid var(--color-gold);
  color: var(--color-white);
}

.book-action .btn:hover {
  background-color: var(--color-gold);
  border: 2px solid var(--color-gold);
  color: var(--color-white);
}

@media screen and (max-width:767.98px) {
  .wrapper-book-content {
    background-image: linear-gradient(to top, rgba(20, 26, 28,.3), var(--color-dark), rgba(20, 26, 28,.5)), url('../images/bg-rent.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }

  .book-content {
    width: 100%;
  }
}

@media screen and (max-width:575.98px) {
  .book-action img {
    max-width: 100%;
  }
}

/* ------------------- */
/* Social Links */
/* ------------------- */

.wrapper-social-links {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 90%;
}

.social-links .image-wrap {
  position: relative;
  transition: ease-in-out 0.5s;
}

.social-links .image-wrap img {
  width: 100%;
  border-radius: 15px;
}

.social-links .image-wrap .link-text {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-align: center;
  background-image: radial-gradient(rgba(20, 26, 28, .3), rgba(0, 0, 0, .5));
  transition: ease-in-out 0.5s;
}

.social-links .image-wrap:hover .link-text {
  border: 1px solid var(--color-gold);
  background-image: radial-gradient(rgba(20, 26, 28, .5), rgba(0, 0, 0, .8));
  transition: ease-in-out 0.5s;
}

.social-links .image-wrap .link-text span {
  font-weight: bold;
  font-size: 30px;
}

@media screen and (max-width:991.98px) and (min-width:576px) {
  .social-links {
    flex-wrap: wrap;
    gap: 30px;
  }

  .social-links .image-wrap {
    width: 40%;
  }
}
@media screen and (min-width:576px) {
  .wrapper-social-links {
    background-image: linear-gradient(45deg, rgba(20, 26, 28,.5), rgba(0, 0, 0, .6)), url("../images/bg-social.jpg");
  }
}
@media screen and (max-width:575.98px) {
  .wrapper-social-links {
    background-image: linear-gradient(45deg, rgba(20, 26, 28,.5), rgba(0, 0, 0, .6)), url("../images/bg-social-sm.jpg");
  }
  .wrapper-social-links {
    padding-top: 15px;
  }
  .social-links {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  .social-links .image-wrap {
    width: 60%;
  }
  .social-links .image-wrap .link-text {
    font-size: 14px;
    padding: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
  }
  .social-links .image-wrap .link-text span {
    font-size: 20px;
  }
}

/* ------------------- */
/* About Us */
/* ------------------- */
.wrapper-about-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus-img ,
.aboutus-content {
  align-self: center;
}
.aboutus-img img {
  border-radius: 15px;
}
.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 0 !important;
}
.signature-name {
  margin-top: 20px;
}
.signature-name h3 {
  margin-bottom: 0;
}

/* ----------- Modal -------------- */
.modal-button {
  color: var(--color-gold);
}
.modal-button:hover {
  opacity: .8;
}
.modal-container {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.3s ease;
  z-index: 1010;
  text-align: left;
}
.modal-container.show {
  pointer-events: auto;
  opacity: 1;
}
.modal-content {
  background-color: var(--color-dark);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 30px 30px 30px 50px;
  width: 90vw;
  max-width: 1400px;
  height: auto;
  max-height: 90vh;
  position: absolute;
}
.modal-content-md{
  max-width: 800px;
}
.modal-content .modal-body {
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    padding-right: 20px;
}
.modal-content .modal-body h4 {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 1px;
  
}
.modal-content .modal-body .heading {
  color: var(--color-white);
}
.modal-content .book-action {
  margin-top: 10px !important;
  margin-bottom: 20px;
}
.modal-content .book-action img {
  width: 200px !important;
}
.close-modal {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-dark);
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0 6px;
}
/* Remove Modal at First */
.modal_container {
  display: none;
}
@media screen and (max-width:767.98px) {
  .modal-content {
    padding: 20px;
    width: 97vw;
    height: auto;
    max-height: 97vh;
  }
  .modal-content .modal-body {
    max-height: calc(90vh - 60px);
    padding-right: 0;
  }
}

/* ----------- Custom Scrollbar Styles -------------- */
.modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-content::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 8px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 8px;
  border: 2px solid #2c2c2c;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #777;
}
/* Firefox Scrollbar Styles */
.modal-content {
  scrollbar-width: thin;
  scrollbar-color: #555 #2c2c2c;
}


@media screen and (max-width:767.98px) {
  .aboutus-img {
    display: none;
  }

  .aboutus-content {
    padding-left: 0;
    width: 100%;
  }

  .wrapper-about-content {
    background-image: radial-gradient(rgba(0, 0, 0, .7), var(--color-dark)), url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width:575.98px) {
  .wrapper-about-content {
    padding-top: 15px;
  }

  .signature-name {
    margin-top: 10px;
  }

  .signature-name img {
    width: 70px;
    height: 70px;
  }
}

/* ------------------- */
/* Subscribe Content */
/* ------------------- */
.wrapper-subscribe-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.wrapper-subscribe-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/bg-foot.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.subscribe-content {
  width: 95%;
  max-width: 800px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 15px;
  background-color: var(--color-dark);
}

.subscribe-content p {
  text-align: center;
}

.contact-form {
  width: 100%;
  margin-top: 40px;
}

.contact-form .wrapper-input,
.contact-form .wrapper-input div {
  display: flex;
  gap: 15px;
}

.contact-form .wrapper-input div {
  flex-grow: 1;
}

.contact-form .wrapper-input>input {
  width: auto;
  padding: 12px;
}

.contact-form .wrapper-input div input {
  padding: 12px;
  width: 50%;
}

/* ------------------- */
/* photography Content */
/* ------------------- */
.wrapper-photography-content{
  position: relative;  
  overflow: hidden;
}
.wrapper-photography-content::after{
  position: absolute;
  content: ""; 
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.photography-content{
  width: 60%;
  margin: 0 auto 0 0;
  position: relative;
}
.photography-content *:not(.btn){
  text-shadow: 2px 2px 4px var(--color-light-dark);
}
#photography p{
  text-align: left;
}
#photography .features-list{
  margin: 20px 0;
  padding-left: 20px;
}
.features-list li {
  position: relative;
  padding-left: 28px; /* space for custom circle */
  margin-bottom: 10px;
}
.features-list li:last-child {
  margin-bottom: 0;
}

/* Custom circle */
.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}


@media screen and (max-width:991.98px) {
  .photography-content {
    width: 100%;
  }  
  .wrapper-photography-content::before{
    display: none;
  }
  .wrapper-photography-content::after{
    background-image: linear-gradient(to right, rgba(0, 0, 0, .95),rgba(0, 0, 0, .85),rgba(20, 26, 28,.8)), url("../images/family.jpeg");
    background-position: left center;
  }
}
@media screen and (min-width:992px) {
  .wrapper-photography-content::after{
    background-image: linear-gradient(to right, rgba(0,0,0,.5),rgba(0,0,0,.3)),url("../images/family-xl.png");
    clip-path: polygon(55% 0, 100% 0%, 75% 100%, 30% 100%);
  }
}

/* ------------------- */
/* photography package */
/* ------------------- */
.wrapper-photography-package{
  position: relative;  
  overflow: hidden;
}
.wrapper-photography-package::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  background-image: url("../images/package-section.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.photography-package{
  width: 70%;
  margin-left: auto;
  margin-right: 0;
}
.photography-package p{
  text-align: left;
}
.photography-package .package-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.package-container .package-item {
  width: calc(50% - 15px);
  background-color: var(--color-dark);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: start;
}
.package-container .package-item img {
  width: 50px;
  height: 50px;
}
.package-container .package-item > div {
  flex-grow: 1;
}
.package-container .package-item .package-title {
  font-size: 22px;
  /* margin-bottom: 15px; */
  /* margin-top: 10px; */
}
.separator {
  border: none;
  border-top: 1px solid var(--color-gold);
  margin: 15px 0;
  opacity: .3;
}

@media screen and (max-width:991.98px) {   
  .wrapper-photography-package::before{
    display: none;
  }
  .wrapper-photography-package{
    background-image: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.5)), url("../images/package-section.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .photography-package{
    width: 100%;
  } 
  .photography-package .package-container {
    gap: 15px;
    margin-bottom: 10px;
  }
  .package-container .package-item {
    padding: 10px;
  } 
  .package-container .package-item img {
    width: 35px;
    height: 35px;
  }
  .package-container .package-item .package-title {
    font-size: 18px;
  }
  .separator {
    margin: 7px 0;
  }
}
@media screen and (max-width:575.98px) {
  .package-container .package-item {
    width: 100%;
  } 
}

/* ------------------- */
/* Pricing package */
/* ------------------- */
.pricing-content{
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 20px;
}
.pricing-content .item-card{
  width: calc(100% / 3);
  padding: 20px;
	border-radius: 10px;
  border: 1px solid var(--color-dark-gray);  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}
.pricing-content .item-card:nth-child(1){
  background: linear-gradient( rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing1.jpg");
}
.pricing-content .item-card:nth-child(2){
  background: linear-gradient( rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing2.jpg");
}
.pricing-content .item-card:nth-child(3){
  background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing3.jpg");
}
.pricing-content .item-card:hover{
  border: 1px solid var(--color-gold);
}
.pricing-content .item-card .title{
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Epilogue", sans-serif;
  margin-bottom: 5px;
}
.pricing-content .item-card .pricing{
  color: var(--color-gold);
  font-size: 25px;
  font-weight: 700;
  text-transform:inherit;
}
.pricing-content .item-card p{
  margin: 15px 0;
  text-align: left;
}
#modalBookPhotoshoot .booking-form {
    width: 100%;
    padding: 0;
    background-color: var(--color-dark);
}
.form-hour-section{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.form-hour-section > div{
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-hour-section > div label{
  white-space: nowrap;
}
.form-foot{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.form-foot .btn{
  font-size: 17px;
}

@media screen and (max-width:767.98px) {
  .pricing-content{
    flex-wrap: wrap;
    gap: 10px;
  }
  .pricing-content .item-card:not(:last-child){
    width: calc(50% - 5px);
  }
  .pricing-content .item-card:last-child{
    width: 100%;
  }
  .d-md-none{
    display: none;
  }
  .pricing-content .item-card .title{
    line-height: 20px;
  }
  .pricing-content .item-card .pricing{
    line-height: 25px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  .pricing-content .item-card:nth-child(1){
    background: linear-gradient( rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing1-sm.jpg");
  }
  .pricing-content .item-card:nth-child(2){
    background: linear-gradient( rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing2-sm.jpg");
  }
  .pricing-content .item-card:nth-child(3){
    background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url("../images/pricing3-sm.jpg");
  }
}
@media screen and (max-width:575.98px) {
  .form-hour-section{
    flex-direction: column;
    align-items: start;
  }
  .booking-form .wrapper-input.flex{
    flex-direction: column;
  }
  .booking-form .wrapper-input.flex p{
    width: 100%;
  }
}


/* Custom */