/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}
body {
  background: #ffbb00;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #7486ff;
  color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('https://tr.rbxcdn.com/56a9b4cf6f77d3b9e8b94b16b0e1a568/420/420/Image/Png') 
              no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
.hero h2 {
  font-size: 2.5rem;
}

/* Section Basics */
section {
  padding: 40px 20px;
  text-align: center;
}
section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #4759ff;
}

/* Cards / Items */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 10px 0;
  color: #4759ff;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4759ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: #001aff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #2f3542;
  color: white;
  margin-top: 30px;
}

.contact {
    display: inline-block;
  padding: 10px 20px;
  background: #4759ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}