* {
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-width: 300px;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
.max-w-text{
  max-width: 600px;
}
header {
  background-color: #f5f5f5;
  padding: 20px 100px;
  height: 100px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.d-flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.light-text {
  font-weight: 300;
}

.logo {
  color: #222;
}

.logo img {
  width: 140px;
}

.logo h1 {
  font-weight: 600;
  font-size: 2rem;
}

nav a {
  display: inline-block;
  padding: 6px;
  text-decoration: none;
  color: #555;
}

nav a:hover {
  color: #000;
}

.activeLink {
  border-bottom: solid 4px #4932cf;
}

.home {
  background: url("../img/background+overlay.jpg");
  background-size: cover;
  height: calc(100vh - 100px);
  color: #ddd;
  text-align: center;
}
.homePhoto {
  background: url("../img/background+overlay2.jpg");
  background-size: cover;
  height: calc(100vh - 100px);
  color: #ddd;
  text-align: center;
}

.first-text h3 {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.2rem;
  /* line-height: 30px; */
}

.main-text h1 {
  color: #fff;
  margin: 20px auto;
  font-size: 4rem;
  /* line-height: 100px; */
}

.btn {
  background-color: #f5f5f5;
  color: #111;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 400;
  font-size: larger;
  transition: all 0.2s ease;
}

.btn-purple:hover {
  color: #f5f5f5;
  background-color: rgb(65, 27, 126);
}

.purple {
  background-color: rgb(65, 27, 126);
  color: #f5f5f5;
}
.sky {
  background-color: rgb(200, 229, 255);
  color: #114b81;
}
.sky:hover {
  background-color: rgb(39, 102, 161);
  color: #f5f5f5;
}
.purple:hover {
  background: rgb(224, 204, 255);
  color: rgb(65, 27, 126);
}

.text-danger {
  color: rgb(238, 70, 70);
}

.text-success {
  color: rgb(12, 206, 132);
}

.text-primary {
  color: rgb(65, 27, 126);
}

#totalPrice p {
  margin: 6px;
}

.font-bold {
  font-weight: 600;
}

.hamburger {
  display: none;
}

.price {
  background-color: #eee;
  padding: 100px 100px 20px;
  min-height: calc(100vh - 100px);
}

.line {
  width: 100px;
  height: 3px;
  background-color: rgb(65, 27, 126);
  margin: 0 auto;
}

#totalPrice {
  font-size: 2rem;
}

#camera {
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  margin-left: 10px;
}

.checkTable {
  width: 100%;
}

.checkTable,
tr,
td {
  border: solid 1px #ddd;
  border-collapse: collapse;
}
.checkTable tr:hover {
  background: #e9e9e9;
}
.checkTable tr:active {
  background: #c1e1ff;
}

#weddingCalc {
  border: solid 1px #ddd;
  padding: 8px 14px;
}
input[type="checkbox"] {
  padding: 8px;
  transform: scale(1);
  transition: all 200ms ease;
}
input[type="checkbox"]:active {
  transform: scale(0.5);
}
input[type="radio"] {
  transform: scale(1);
  transition: all 200ms ease;
}
input[type="radio"]:active {
  transform: scale(0.5);
}
/* Gallery Section */

.gallery {
  background-color: #111;
  /* min-height: 100vh; */
  background: url(../img/back.jpg) fixed;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center;

  padding-top: 100px !important;
}

.gallerySection {
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.galleryItem {
  width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  background-color: #000;
  margin: 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galleryItem img {
  width: 100%;
  opacity: 0.5;
}

.galleryItem img:hover {
  opacity: 0.8;
}

.galleryItem:hover {
  transform: scale(1.05);
  background-color: rgb(65, 27, 126);
}

.galleryItem .inline-text {
  position: absolute;
  transform: translate(20px, -60px);
  color: #ddd;
}

.inline-text p {
  margin: 0;
  padding: 0;
}

/* Modal */

.gallery-modal .modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.877);
  top: 0;
  left: 0;
  z-index: 9999;
}

.gallery-modal .modal-hero {
  min-width: 800px;
  height: 440px;
  background-color: #f5f5f5;
}

.modal-hero iframe {
  width: 100%;
  height: 100%;
}

.modal-hero .close-modal {
  background-color: crimson;
  width: 40px;
  height: 40px;
  border: none;
  color: #fff;
  font-weight: bold;
  position: absolute;
  transform: translateX(0px);
}

.modal-hero .close-modal:hover {
  background-color: rgb(177, 10, 44);
}

.modal-hero .close-modal:active {
  background-color: rgb(20, 20, 20);
}

/* About */

.about {
  background-color: #111;
  background: url(../img/back\ 2.jpg);
  background-size: cover;
  background-position: top;
  padding-top: 100px;
}

.feature-card {
  width: 200px;
  background: linear-gradient(
    0deg,
    rgba(46, 46, 46, 0.007),
    rgba(10, 68, 58, 0.815)
  );
  outline: solid 0px rgb(100, 255, 221);
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
  background: linear-gradient(
      0deg,
      rgba(105, 255, 222, 0.425),
      rgb(68, 255, 214)
    ),
    url(../img/background.jpg);
  background-size: cover;
  color: rgb(11, 46, 38);
  transform: scale(1.2);
  outline: solid 10px rgba(23, 196, 159, 0);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-active {
  background: linear-gradient(
      0deg,
      rgba(105, 255, 222, 0.425),
      rgb(68, 255, 214)
    ),
    url(../img/background.jpg);
  background-size: cover;
  color: rgb(11, 46, 38);
  transform: scale(1.1);
  outline: solid 10px rgba(23, 196, 159, 0);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

footer {
  background: url(../img/back.jpg) fixed;
  background-size: cover;
  background-position: top;
}

.bg-footer {
  background: #0e0e12 !important;
}

.text-indent {
  text-indent: 30px;
}

.mob-logo {
  display: none;
}

.min-height-50 {
  height: 50px !important;
}

.min-width-50 {
  width: 20px !important;
}

.font-small {
  font-size: 0.6rem;
}

.font-smaller {
  font-size: 0.8rem;
}

.font-medium {
  font-size: medium;
}

.closeMenu {
  display: none;
}

.success {
  background-color: rgb(170, 255, 203);
}

#camera {
  width: 150px;
  display: inline-block;
  transition: all 0.2s;
}
#camera:active {
  transform: translateY(3px);
}

.typeLabel {
  padding: 10px;
  background: #ddd;
  border-radius: 6px;
  border: solid 1px transparent;
  transition: all 0.2s;
}

.typeLabel:active {
  transform: scale(0.9);
  background-color: #b9ddff;
  border: solid 1px #1e92ff;
}
.selectedType {
  background-color: #b9ddff;
  border: solid 1px #1e92ff;
}

.text-right {
  text-align: right;
}
.font-italic {
  font-style: italic;
}
.postSection {
  width: 100%;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.postSection div {
  width: 300px;
  transition: all 200ms ease;
}
.postSection div:hover {
  transform: scale(1.1);
}
.postSection div img {
  width: 100%;
  border-radius: 24px;
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.totPrice {
  animation-name: scaleUp;
  animation-duration: 0.3s;
}

@keyframes scalein {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.discountAnimation {
  animation: scalein 200ms linear;
}

.card-price {
  background: #f5f5f5;
  border-radius: 12px;
  width: 400px;
}
.card-main-text {
  height: 400px;
}
/* MOBILE DEVICE */

@media only screen and (max-width: 768px) {
  header {
    padding: 20px;
    height: 80px;
  }

  .mob-logo {
    display: block;
    padding: 10px;
  }

  .first-text h3 {
    font-size: 1rem;
    padding: 0px 30px;
    margin-top: -50px;
  }

  .logo h1 {
    font-size: 1.4rem;
  }

  .main-text h1 {
    font-size: 2rem;
    padding: 0px 10px;
    margin: 0 0 30px 0;
  }

  .home {
    height: calc(100vh - 80px);
  }
  .homePhoto {
    height: calc(100vh - 80px);
  }

  .hamburger {
    display: block;
    background: transparent;
    border: none;
    font-size: larger;
    border-radius: 40px;
    background: rgb(31, 31, 31);
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .hamburger:active {
    background: rgb(65, 27, 126);
  }

  nav {
    position: fixed;
    background-color: rgba(17, 17, 17, 0.959);
    color: #fff;
    padding: 10px;
    top: 0;
    left: -800px;
    height: 100vh;
    width: 100vw;
    transition: all 0.3s ease;
  }

  nav a {
    font-size: larger;
  }

  .active {
    left: 0px;
  }

  nav a {
    color: #fff;
    display: block;
  }

  nav a:hover {
    color: #ddd;
  }

  .btn {
    font-size: medium;
  }

  .price {
    padding: 100px 20px;
  }

  .min-height-50 {
    height: 20px;
    font-size: 1rem;
  }

  #totalPrice {
    font-size: 1.4rem;
  }

  .closeMenu {
    display: block;
    background-color: rgb(189, 37, 37);
    color: #fff;
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }

  .about {
    padding: 10px;
    background-attachment: scroll;
  }

  footer {
    background-attachment: scroll;
  }

  .small-text {
    font-size: small !important;
  }

  .gallery-modal .modal-hero {
    min-width: 400px;
    height: 220px;
    background-color: #f5f5f5;
  }

  .modal-hero .close-modal {
    transform: translateX(0px);
    transform: translateY(-40px);
    right: 0px;
  }
}
