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

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Banner with overlays */
.banner {
  width: 100%;
  height: 400px;
  background-image: url('banner1080.png');
  background-size: cover;
  background-position: bottom;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Header overlay */
header {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(6px);
  text-align: center;
  padding: 20px 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 60px;
  margin-bottom: 5px;
}

.header-text {
  color: #ffffff;
  font-size: 1.1em;
}

/* Features overlay */
.features-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.feature {
  color: #fff;
  font-size: 1.3em;
}

/* Info box */
.info-box {
  background-color: #222;
  border: 1px solid #2196f3;
  border-radius: 5px;
  padding: 15px 25px;
  margin: 40px 0 30px 0;
  text-align: center;
}

/* Contact box */
.contact-box {
  width: 80%;
  max-width: 600px;
  background-color: #222;
  padding: 30px;
  border-radius: 5px;
  margin: 40px 0;
  text-align: center;
  border: 1px solid #2196f3;
}

.contact-box h2 {
  color: #2196f3;
  margin-bottom: 15px;
}

.instagram-link {
  display: inline-block;
  margin-top: 15px;
}

.instagram-logo {
  width: 40px;
  height: 40px;
  transition: filter 0.3s;
}

.instagram-logo:hover {
  filter: brightness(120%);
}

/* Footer */
footer {
  width: 100%;
  background-color: #1e1e1e;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #2196f3;
}

footer h3 {
  color: #2196f3;
  margin-bottom: 10px;
}

footer p {
  color: #ccc;
  font-size: 0.9em;
}