/* styles.css */

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

body {
  font-family: Arial, sans-serif;
  background-color: #1a112b;
  color: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

/* Header */
.site-header {
  background: #231833;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
nav a:hover {
  color: #00bfff;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #231833, #2d1944);
  padding: 6rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.btn {
  background-color: #00bfff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #009acd;
}

/* Services */
.services {
  background: #2e1a4b;
  padding: 4rem 2rem;
  text-align: center;
}
.services h2 {
  margin-bottom: 2rem;
}
.service-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.service {
  background: #3a205c;
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
}

/* About */
.about {
  padding: 4rem 2rem;
  background: #1a112b;
  text-align: center;
}
.about h2 {
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  background: #2e1a4b;
  padding: 4rem 2rem;
}
.contact h2 {
  margin-bottom: 2rem;
  text-align: center;
}
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
button[type="submit"] {
  background-color: #00bfff;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: #009acd;
}

/* Footer */
.site-footer {
  background: #231833;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Animations */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
