body {
  margin: 0;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  background: #faf7f2;
  color: #2b2118;
}

.home-page {
  font-family: "Parisienne", "Great Vibes", cursive;
}

nav {
  background: #000000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  color: #e0c46b;
  font-size: 34px;
  font-weight: bold;
  font-family: "Parisienne", "Great Vibes", cursive;
  text-decoration: none;
}

.top-social-icon {
  color: #e0c46b;
  font-size: 28px;
  transition: color 0.3s ease;
}

.top-social-icon:hover {
  color: white;
}

.menu-toggle {
  background: none;
  border: none;
  color: #e0c46b;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.08);
}

/* FLOATING POPUP MENU */

.nav-menu {
  display: none;
  position: absolute;
  top: 78px;
  right: 40px;
  background: #000000;
  border: 1px solid #e0c46b;
  border-radius: 24px;
  padding: 24px 38px;
  text-align: center;
  z-index: 2000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  min-width: 240px;
}

.nav-menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 30px;
  margin: 16px 0;
  font-family: "Parisienne", "Great Vibes", cursive;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #e0c46b;
}

.show-menu {
  display: block;
}

.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("images/weddingdressbackground.jpg");
  background-size: cover;
  background-position: center 8%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-box {
  max-width: 850px;
  padding: 20px;
}

h1 {
  font-size: 76px;
  margin-bottom: 15px;
  font-family: "Parisienne", "Great Vibes", cursive;
}

h2 {
  font-size: 52px;
  margin-bottom: 20px;
  font-family: "Parisienne", "Great Vibes", cursive;
}

h3 {
  font-size: 34px;
  margin-bottom: 10px;
  font-family: "Parisienne", "Great Vibes", cursive;
}

.subtitle {
  font-size: 34px;
  margin-bottom: 35px;
  font-family: "Parisienne", "Great Vibes", cursive;
}

.section {
  padding: 80px 12%;
  text-align: center;
}

.section p {
  font-size: 28px;
  line-height: 1.8;
}

.about-container {
  margin: 60px auto 70px;
  max-width: 850px;
  text-align: center;
}

.about-title {
  font-family: "Great Vibes", "Parisienne", cursive;
  font-size: 70px;
  color: #e0c46b;
  margin-bottom: 25px;
  font-weight: normal;
}

.about-text {
  font-size: 30px;
  line-height: 1.8;
  color: #2b2118;
  margin-bottom: 20px;
}

.grid,
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 45px;
}

.home-card-centered {
  grid-column: 1 / 3;
  width: 50%;
  justify-self: center;
}

.card {
  background: transparent;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
  display: block;
  background-color: #f5f5f5;
}

.home-card-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center center;
  background-color: #f5f5f5;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 32px;
  display: block;
}

.card img {
  border-radius: 32px;
}

.dress-image-wrap,
.flip-card {
  width: 100%;
  height: 500px;
  perspective: 1200px;
  border-radius: 32px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front {
  transform: rotateY(0deg);
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background-color: #f5f5f5;
  border-radius: 32px;
  display: block;
}

.card-link,
.card-link:visited,
.card-link:hover,
.card-link:active {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link h3,
.card-link p {
  text-decoration: none !important;
  color: #2b2118;
  border-bottom: none !important;
}

.card-link h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

.card-link p {
  font-size: 26px;
}

.card-link:hover h3 {
  color: #e0c46b;
}

.image-placeholder {
  height: 500px;
  background: #e8ded3;
  border: 2px dashed #b89f84;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a6756;
  margin-bottom: 18px;
  font-size: 26px;
  font-family: "Parisienne", "Great Vibes", cursive;
  border-radius: 32px;
  overflow: hidden;
}

.btn {
  background: #e0c46b;
  color: #000000;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
  font-size: 24px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  transform: translateY(-2px);
}

footer {
  background: #000000;
  color: white;
  text-align: center;
  padding: 40px;
  margin-top: 80px;
}

footer p {
  font-size: 24px;
}

footer a {
  color: #e0c46b;
  text-decoration: none;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  color: #e0c46b;
  font-size: 30px;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

.flip-note {
  font-size: 20px;
  color: #7a6756;
  margin-top: 10px;
}

.social-section {
  margin-top: 80px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.social-icons a {
  color: #000000;
  font-size: 48px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e0c46b;
}

.contact-card-centered {
  grid-column: 1 / 3;
  width: 50%;
  justify-self: center;
}

@media (max-width: 700px) {

  nav {
    text-align: center;
    justify-content: center;
    padding: 15px;
  }

  .logo-area {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .menu-toggle {
    margin-top: 8px;
  }

  .nav-menu {
    top: 85px;
    right: 50%;
    transform: translateX(50%);
    width: 72%;
    padding: 24px 20px;
  }

  .nav-menu a {
    font-size: 26px;
    margin: 14px 0;
  }

  .hero {
    background-position: center 5%;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 28px;
  }

  .section {
    padding: 60px 8%;
  }

  .section p {
    font-size: 24px;
  }

  .grid,
  .home-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .home-card-centered,
  .contact-card-centered {
    grid-column: auto;
    width: 100%;
  }

  .card-img,
  .home-card-img,
  .flip-inner,
  .flip-card,
  .image-placeholder {
    height: 380px;
  }

  .about-title {
    font-size: 56px;
  }

  .about-text {
    font-size: 24px;
  }

  .btn {
    display: block;
    width: fit-content;
    margin: 12px auto;
    font-size: 18px;
  }

  .social-icons a {
    font-size: 40px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
}
