@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 25px 60px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

.navbar a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ff2d75;
}

/* HERO */
.hero {
  height: 95vh;
  background: url('images/hero-model.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: inherit;
  animation: zoomHero 15s infinite alternate ease-in-out;
}

@keyframes zoomHero {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 700px;
  animation: fadeUp 1.5s ease;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.9;
}

.btn {
  background: #ff2d75;
  padding: 14px 30px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

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

.hero-buttons {
  margin-top: 20px;
}

.btn-outline {
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/* SECTIONS */
section {
  padding: 80px 60px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* CATEGORY CARDS */
.card {
  padding: 40px;
  background: #f8f8f8;
  border-radius: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  background: #ff2d75;
  color: white;
}

/* PRODUCTS */
.product {
  text-align: left;
  transition: 0.3s;
}

.product img {
  width: 100%;
  border-radius: 10px;
}

.product h3 {
  margin-top: 10px;
}

.product p {
  color: #ff2d75;
  font-weight: 600;
}

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

/* LIFESTYLE */
.lifestyle {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lifestyle img {
  width: 50%;
  border-radius: 20px;
}

.lifestyle div {
  width: 50%;
}

/* BENEFITS */
.benefits .grid div {
  background: #111;
  color: white;
  padding: 25px;
  border-radius: 10px;
}

/* TESTIMONIALS */
.testimonials {
  text-align: center;
  background: #f9f9f9;
}

.testimonials p {
  margin: 10px 0;
  font-style: italic;
}

/* PROMO */
.promo {
  background: #ff2d75;
  color: white;
  text-align: center;
  font-weight: 600;
}

/* EMAIL */
.email {
  text-align: center;
}

.email input {
  padding: 12px;
  width: 250px;
  border-radius: 25px;
  border: 1px solid #ccc;
  margin-top: 15px;
}

.email button {
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: #ff2d75;
  color: white;
  margin-left: 10px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: white;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.urgency {
  margin-top: 15px;
  font-size: 14px;
  color: #ffb3c7;
}

.product {
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product img {
  transition: 0.3s;
}

.product:hover img {
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
}