/* style.css */

/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}

.site-header h1 {
  font-size: 28px;
  font-weight: bold;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.site-header nav a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  background: url('https://michaelkorsbrasil.com/images/banner-hoki138.png') no-repeat center center/cover;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
  border-radius: 10px;
  margin: 20px 0;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: #111;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ffaa00;
}

/* Features */
.features {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.features h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.features ul {
  list-style: none;
}

.features li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  font-size: 14px;
}
