/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #fff7f9;
  color: #222;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
}

h2 {
  font-size: 42px;
}

p {
  font-size: 16px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 247, 249, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

/* NAV */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  position: relative;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e7a6b1;
}

/* CTA */
.cta-btn {
  background: #e7a6b1;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d98f9b;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 10%;
}

.hero img {
  position: absolute;
  right: 0;
  width: 60%;
  height: auto;
  object-fit: cover;
}

.hero-text {
  position: relative;
  max-width: 500px;
  background: rgba(231,166,177,0.2);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text a {
  margin-top: 20px;
  display: inline-block;
}

/* SECTION */
.section {
  padding: 100px 10%;
}

.section.alt {
  background: #fff0f3;
}

/* GRID */
.grid {
  display: grid;
  gap: 40px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* IMAGE BLOCK */
.img-block img {
  width: 100%;
}

/* FLOAT CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e7a6b1;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  padding: 60px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

footer h4 {
  margin-bottom: 15px;
}

footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 900px) {

  nav ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero img {
    display: none;
  }
}