/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background-color: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 1.8rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ff6f61;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


/* Footer */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.buyNow {
  background: linear-gradient(135deg, #000000, #333333);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

buyNow:hover {
  transform: translateY(-4px);
  font-weight: bold;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #333333, #000000);
}

buyNow:active {
  transform: translateY(-6px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
