/* === AQUILACODE PORTFOLIO STYLES === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* === ANIMATED BACKGROUND === */
body {
  color: #fff;
  line-height: 1.6;
  background: linear-gradient(-45deg, #00111a, #002b3d, #003d5c, #004d73);
  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === HEADER === */
header {
  padding: 2.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

header h1 {
  font-size: 2.3rem;
  color: #00aaff;
  font-weight: 700;
}

header p {
  color: #ccc;
  margin-top: 0.6rem;
  font-weight: 300;
}

/* === CONTAINER === */
.container {
  width: 90%;
  max-width: 950px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* === TITLES === */
h2 {
  font-size: 1.7rem;
  color: #00aaff;
  margin-bottom: 1rem;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
}

/* === TEXT === */
p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* === PROJECTS === */
.projects {
  display: grid;
  gap: 1.5rem;
}

.project {
  background: rgba(18,18,18,0.6);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.project:hover {
  border: 1px solid #00aaff;
  transform: translateY(-4px);
}

.project h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* === CONTACT SECTION === */
.contact {
  text-align: center;
  margin-top: 3rem;
}

.whatsapp-btn {
  background: #00aaff;
  color: #fff;
  padding: 0.9rem 1.7rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #0088cc;
  transform: scale(1.05);
}

/* === FADE-IN EFFECT === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 1.5rem;
  color: #888;
  font-size: 0.9rem;
}

footer a {
  color: #00aaff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}