/* ✅ Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #000000;
  color: #eaeaea;
  line-height: 1.6;
}

/* ✅ Global Section Layout */
section {
  padding: 60px 10%;
  text-align: center;
}

/* ✅ Headings */
h1, h2, h3 {
  color: #00ff44;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

p {
  margin: 10px 0;
}

/* ✅ Section 1 — Hero (Your Name / Intro) */
.hero {
  background: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=1500&q=80')
    no-repeat center/cover;
  min-height: 350px;
  padding: 140px 10%;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero .intro-text {
  max-width: 500px;
}

.hero h1 span {
  color: #00ff44;
  font-size: 3rem;
  font-weight: 700;
}

.hero button {
  background: #00ff44;
  border: none;
  color: #000;
  padding: 12px 26px;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #00cc33;
  transform: translateY(-3px);
}

.hero img {
  width: 300px;
  border-radius: 10px;
}

/* ✅ Section 2 — Hobbies (3 Columns) */
.hobby-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.hobby {
  width: 33%;
}

.hobby img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #00ff44;
  margin-bottom: 10px;
}

/* ✅ Section 3 — Favorite Foods Layout */
.food-layout {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.food-img {
  width: 100%;
  border-radius: 10px;
}

/* ✅ Lists Styling */
ul {
  text-align: left;
  margin: 0 auto;
  width: fit-content;
}

li {
  margin-bottom: 10px;
}

/* ✅ Section 4 — Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  margin-top: 30px;
}

th, td {
  border: 2px solid #00ff44;
  padding: 14px;
}

th {
  background: #00ff44;
  color: #000;
  font-weight: 700;
}

td {
  background: #111;
}

/* ✅ Section 5 — Contact Form Styling */
form {
  max-width: 450px;
  margin: 0 auto;
  text-align: left;
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border: 2px solid #00ff44;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: none;
  background: #222;
  color: #ffffff;
}

textarea {
  height: 120px;
}

button.submit {
  width: 100%;
  background: #00ff44;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 14px;
  margin-top: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

button.submit:hover {
  background-color: #00cc33;
  transform: translateY(-3px);
}
