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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero {
  background: url("images/welcome.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 5px solid #00bcd4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: -1;
}


.hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: white;
  color: #007bff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e6f7ff;
}

/* Section */
.section {
  background: white;
  padding: 40px 20px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #007bff;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  padding: 20px 0;
  margin-top: 40px;
}

/* Mobile-first tweaks (already responsive) */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.5em;
  }
  .section h2 {
    font-size: 2em;
  }
}
.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Fancy gradient text */
.gradient-text {
  background: linear-gradient(45deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Better spacing on mobile */
@media (max-width: 599px) {
  .container {
    padding: 16px;
  }
  .hero {
    padding: 40px 15px;
  }
  .section {
    padding: 30px 15px;
  }
  .profile-img {
    width: 80px;
    height: 80px;
  }
}
.coming-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.coming-list li {
  background: #f0f8ff;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-left: 4px solid #00bcd4;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
