@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}



/* NAVBAR */
/* ===== Pinterest Navbar ===== */

.pinterest-nav {
  background: white;
  padding: 40px 20px 25px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  text-align: center;
}

/* Logo */
.logo h1 {
  font-size: 38px;
  font-weight: 800;
  color: rgb(34, 34, 34);
  margin-bottom: 8px;
}

.logo p {
  color: #666;
  font-size: 16px;
  margin: 10px 20px;
  text-align: center;
}

/* Links */
.nav-links a {
  text-decoration: none;
  margin: 0 25px;
  font-weight: 600;
  font-size: 18px;
  color: #444;
  position: relative;
  transition: 0.3s ease;
}

/* Cute hover */
.nav-links a:hover {
  color: #ff6b9d;
}

/* Soft underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background: #ff6b9d;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: 0.3s ease;
  border-radius: 10px;
}

.nav-links a:hover::after {
  width: 60%;
}



/* Login Button */
button {
  background-color: #ff6b9d !important;
  border: none !important;
  border-radius: 40px !important;
  padding: 12px 30px !important;
  font-weight: 600;
  color: white !important;
  box-shadow: 0 6px 15px rgba(255, 107, 157, 0.4);
  transition: 0.3s ease;
  margin: 20px;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 157, 0.5);
}


/* Hero Section */
.text-center h1 {
  margin-top: 80px;
  font-size: 44px;
  font-weight: 800;
  color: #333;
}

.text-center h2 {
  margin-top: 10px;
  color: #555;
  font-weight: 400;
  text-align: center;
}


/* Footer */
footer {
  width: 100%;
  background: white !important;
  margin-top: auto;
  padding: 40px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

/* Footer titles */
footer h4,
footer h5 {
  text-align: center;
  font-weight: bold;
  color: #ff4f87;
  margin: 30px 0 10px 0;
}

/* Footer links */
footer .col-md-4 {
  text-align: center;
}

footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
  color: #444;
  font-weight: 600;
  transition: 0.3s ease;
}

footer a:hover {
  color: #ff6b9d;
}
