/* ================= FONTS ================= */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Infant", serif;
}

p,
a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px !important;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1440px;
  padding: 120px;
  margin: 0 auto;
}

.container-content {
  width: 100%;
  max-width: 1440px;
  padding: 100px 120px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
  .container-content {
    padding: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .container-content {
    padding: 40px 30px;
  }
}

/* ================= NAVBAR ================= */
.main-header {
  background-color: #545454;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 999999;
}

.nav-glow {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.18) 40%,
    rgba(255,255,255,0.07) 75%,
    rgba(255,255,255,0) 100%
  );

  filter: blur(15px);
  pointer-events: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  width: 138px;
}

.navbar .nav-link {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 400;
  opacity: 1 !important;
}

.navbar .nav-link:hover {
  opacity: 0.75 !important;
}

.btn-dark {
  background-color: #100F1B;
}

.hamburger-btn {
  width: 38px;
  height: 38px;
  background: #100F1B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.hamburger-btn i {
  font-size: 26px;
  color: #ffffff;
}

.hamburger-btn.open i {
  transition: 0.3s all;
}

#mobileMenu.offcanvas {
  width: 100%;
  transition: transform 0.5s ease-in-out;
  z-index: 1050;
}

#mobileMenu .offcanvas-header {
  justify-content: flex-end;
  border-bottom: none;
  padding: 2rem 3rem 0 0;
}

#mobileMenu .btn-close-white {
  width: 32px;
  height: 32px;
}

#mobileMenu .offcanvas-body {
  padding: 2rem 3rem;
}

#mobileMenu .list-group-item {
  color: #ffffff !important;
  background: transparent !important;
  border: none !important;
  padding: 14px 0;
  font-size: 1.1rem;
  display: block;
  width: 100%;
}

#mobileMenu .list-group-item:hover {
  opacity: 0.75;
}

body.offcanvas-backdrop,
body.offcanvas-open {
  padding-right: 0 !important;
}

body.offcanvas-open {
  overflow: visible !important;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  /*width: 60%;*/
    max-width: 580px;
  line-height: 1.1;
}

.hero-sub {
  color: #ddd;
  /*width: 55%;*/
  max-width: 500px;
  margin-top: 15px;
  line-height: 1.5;
}

.hero-section a {
  font-weight: 500 !important;
  color: #100F1B;
  width: 195px;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .hero-img {
    object-position: 70% center;
    height: 100%;
  }

  .hero-title {
    font-size: 48px;
    width: 80%;
  }

  .hero-sub {
    width: 70%;
  }
}

@media (max-width: 576px) {  
  .hero-title {
    font-size: 48px;
    width: 100%;
  }

  .hero-sub {
    width: 100%;
  }
}

/* ================= WHAT WE DO ================= */
.what-we-do-section {
  background-color: #100F1B;
}

.what-we-do-section h2 {
  font-size: 36px;
  color: #ffffff;
  width: 90%;
  margin-bottom: 50px;
}

.what-we-do-section p {
  font-size: 18px;
  color: #ffffff;
  width: 100%;
  margin: 0;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .what-we-do-section h2 {
    margin-bottom: 40px;
  }
}

/* ================= ABOUT ME ================= */
.about-me-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
}

.about-content {
  position: relative;
  z-index: 2;
  color: #100F1B;
}

.about-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 0;
}

.about-content h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.about-content p {
  width: 55%;
  line-height: 1.6;
  margin: 0;
}

.michael-young-mv {
  display: none;
}

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  .about-img {
    display: none;
  }

  .about-content p {
    width: 100%;
  }

  .michael-young-mv {
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .michael-young-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: 
      scale(1.1)
      translate(10px, 0px);

    transform-origin: top center;
  } 
}

/* ================= SERVICES ================= */
.services-section {
  background-color: #F5F5F5;
}

.services-section h2 {
  font-size: 36px;
  color: #100F1B;
  width: 90%;
  margin-bottom: 50px;
}

.services-section p {
  color: #100F1B;
  width: 96%;
  margin: 0;
}

/* ================= CONTACT ME ================= */
.contact-me-section {
  background-color: #545454;
}

.contact-me-section h2 {
  font-size: 36px;
  color: #fff;
  width: 100%;
  margin-bottom: 40px;
}

.btn-180 {
  width: 180px;
}

.consultation {
  display: flex;
  align-items: center;
  gap: 15px;
  /*margin-left: 0;
  margin-bottom: 40px;
  flex-wrap: nowrap;*/
}

.consultation a {
    text-decoration: none !important;
	
}
.consultation-icons {
    display: flex;
    align-items: center;
    gap: 18px;   
}
@media (max-width: 576px) {
    .consultation {
        flex-direction: column;    
        align-items: flex-start;   
        gap: 10px;
    }

    .consultation-icons {
        display: flex;
        gap: 15px;                 
    }
}
/* ================= FOOTER ================= */
.footer-menu {
  margin: 40px 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #fff;
  width: 100%;
  box-sizing: border-box;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}

.footer-nav li a:hover {
  opacity: 0.7;
}

.footer-brand {
  width: 138px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 40px;
  color: #fff;
  flex-wrap: wrap;
}

.footer-left img {
  width: 167px;
}

.footer-right-mv {
  display: none;
}

.footer-right p,
.footer-right-mv p {
  margin: 0;
  font-size: 14px !important;
}

.footer-right-mv p {
  margin-bottom: 0.5rem;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .footer-menu {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding-right: 0;
  }

  .footer-left img {
    margin-bottom: 2rem;
  }

  .footer-right {
    display: none;
  }

  .footer-right-mv {
    display: block;
  }
}

/* ============ SCROLL TO TOP BUTTON ============ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #100F1B;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.scroll-top-btn i {
  font-size: 22px;
  color: #fff;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .main-header { height: auto; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    max-width: 90%;
  }
  .hero-sub {
    font-size: 16px;
  }
}


