/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Heading */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Button */
.cta {
  padding: 12px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  background: #ff4b2b;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover Effect */
.cta:hover {
  background: #ff6a4d;
  transform: scale(1.05);
}
