* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fdf8f3;
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  padding: 4px 0;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
}

.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #c79b4b !important;
}

.nav-link {
  color: #444 !important;
  font-weight: 500;
}

.contact-btn {
  padding: 12px 28px !important;
  border-radius: 50px;
  background: linear-gradient(135deg, #d8b26a, #c79b4b);
  color: white !important;
}

/* =========================
   HERO
========================= */

.hero-section {

  min-height: 100vh;

  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(255, 248, 244, 0.90),
      rgba(255, 248, 244, 0.90)),
    url('assets/img/hero-bg.jpg');

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
}

.hero-subtitle {
  color: #c79b4b;
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  line-height: 1.1;
  color: #333;
  margin-bottom: 25px;
  margin-top: 65px;
}

.hero-description {
  color: #777;
  line-height: 2;
  margin-bottom: 40px;
  font-size: 17px;
}

.hero-button {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 17px 34px;

  border-radius: 50px;

  text-decoration: none;

  background: linear-gradient(135deg,
      #e0be7c,
      #c79b4b);

  color: white;

  font-weight: 600;

  transition: 0.4s;
}

.hero-button:hover {
  transform: translateY(-4px);
  color: white;
}

/* =========================
   TEMPLATE
========================= */

.template-section {
  padding: 120px 0;
}

.section-title h2 {
  font-size: 70px;
  color: #333;
}

.mini-title {
  color: #c79b4b;
  letter-spacing: 4px;
  font-size: 20px;
  font-weight: 600;
 }

.modern-card {

  overflow: hidden;

  border-radius: 30px;

  background: white;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.07);

  transition: 0.5s;
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-10px);
}

.template-thumbnail {
  position: relative;
  overflow: hidden;
}

.template-thumbnail img {

  width: 100%;
  height: 460px;

  object-fit: cover;

  transition: 0.6s;
}

.modern-card:hover img {
  transform: scale(1.06);
}

.thumbnail-overlay {

  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 25px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      transparent);
}

.thumbnail-overlay span {
  color: white;
  letter-spacing: 2px;
  font-size: 13px;
}

.template-content {
  padding: 30px;
}

.template-badge {

  display: inline-block;

  padding: 12px 55px;

  border-radius: 50px;

  background: linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: rgb(255, 255, 255);

  font-size: 18px;
  font-weight: 600;

  margin-bottom: 18px;
}

.template-content h4 {
  font-size: 38px;
  color: #333;
}

.template-desc {
  margin-top: 15px;
  color: #777;
  line-height: 1.9;
}

.price-template {
  margin-top: 20px;
  margin-bottom: 25px;
  color: #d48ca1;
  font-size: 20px;
  font-weight: 700;
}

.btn-preview {

  display: inline-block;

  padding: 14px 30px;

  border-radius: 50px;

  background: linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: white;
  font-weight: 600;

  transition: 0.4s;
}

.btn-preview:hover {
  color: white;
  transform: translateY(-3px);
}

/* =========================
   CONTACT
========================= */

.contact-section {
  padding: 120px 0;
}

.contact-box {

  padding: 70px;

  border-radius: 40px;

  background: white;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-size: 65px;
  color: #333;
}

.contact-description {
  margin-top: 20px;
  color: #777;
  line-height: 2;
  font-size: 20px;
}

.contact-card {
  background: #fff7f8;
  padding: 35px;
  border-radius: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-icon {

  width: 60px;
  height: 60px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: white;
  font-size: 24px;
}

.btn-contact-main {

  display: block;

  width: 100%;

  text-align: center;

  padding: 16px;

  border-radius: 50px;

  text-decoration: none;

  background: linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: white;
  font-weight: 600;
}

/* =========================
   MODERN FOOTER
========================= */

.footer-section {
  padding: 120px 0 40px;
}

.modern-footer {

  background:
    linear-gradient(145deg,
      #ffffff,
      #fff7f8);

  padding: 70px;

  border-radius: 40px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.05);
}

/* LOGO */

.footer-logo {

  font-size: 58px;

  font-family:
    'Cormorant Garamond', serif;

  color: #d48ca1;

  margin-bottom: 20px;
}

.footer-description {

  color: #777;

  line-height: 2;

  max-width: 400px;

  margin-bottom: 30px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {

  width: 50px;
  height: 50px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  background:
    linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: white;

  font-size: 20px;

  transition: 0.4s;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

/* TITLE */

.footer-title {

  font-size: 22px;

  color: #333;

  margin-bottom: 25px;
}

/* LINKS */

.footer-links,
.footer-contact {

  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 18px;
}

.footer-links a {

  text-decoration: none;

  color: #666;

  transition: 0.3s;
}

.footer-links a:hover {
  color: #d48ca1;
  padding-left: 5px;
}

.footer-contact li {

  color: #666;

  display: flex;
  gap: 12px;

  align-items: center;
}

.footer-contact i {
  color: #d48ca1;
}

/* BOTTOM */

.footer-bottom {

  margin-top: 50px;

  padding-top: 30px;

  border-top: 1px solid #eee;

  text-align: center;
}

.footer-bottom p {
  color: #888;
  margin: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .modern-footer {
    padding: 40px 25px;
  }

  .footer-logo {
    font-size: 42px;
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

  .hero-title {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 45px;
  }

  .contact-title {
    font-size: 45px;
  }

  .contact-box {
    padding: 35px 25px;
  }

  .template-thumbnail img {
    height: 340px;
  }

}

/* =========================
   COMING SOON CARD
========================= */

.comingsoon-card {

  height: 100%;

  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(145deg,
      #fff,
      #fdf5f7);

  border: 2px dashed #e4c7cf;
}

.comingsoon-box {
  text-align: center;
  padding: 40px;
}

.comingsoon-icon {

  width: 100px;
  height: 100px;

  margin: auto;
  margin-bottom: 25px;

  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      #f3a6b7,
      #d48ca1);

  color: white;

  font-size: 42px;
}

.comingsoon-box h4 {

  font-size: 38px;
  color: #333;
  margin-bottom: 15px;
}

.comingsoon-box p {

  color: #888;
  line-height: 1.8;
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {

  width: 100%;
  max-width: 400px;

  object-fit: cover;

  animation: floatImage 4s ease-in-out infinite;
}

/* FLOAT EFFECT */

@keyframes floatImage {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:992px) {

  .hero-image {
    margin-top: 60px;
  }

}

/* =========================
   MOBILE NAVBAR
========================= */

.navbar-toggler {
  border: none !important;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* ICON HAMBURGER CUSTOM */
.navbar-toggler-icon {

  background-image: none !important;

  width: 30px;
  height: 22px;

  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {

  display: block;

  background-color: #c79b4b;

  border-radius: 10px;

  height: 3px;

  transition: 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {

  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* MOBILE MENU */
@media(max-width:991px){

  .navbar-collapse {

    margin-top: 15px;

    padding: 20px;

    border-radius: 20px;

    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(20px);

    box-shadow:
      0 15px 40px rgba(0,0,0,0.08);
  }

  .navbar-nav {
    gap: 10px !important;
  }

  .nav-link {

    padding: 12px 15px !important;

    border-radius: 14px;

    transition: 0.3s;
  }

  .nav-link:hover {
    background: #f8f3ec;
  }

  .contact-btn {

    width: 100%;

    text-align: center;

    margin-top: 10px;
  }

  .logo-text {
    font-size: 26px;
  }

}