@import url('reset.css');

:root {
  --bg-main: #0a0f17;
  --bg-section: #121925;
  --accent: #336699;
  --accent-light: #4a85b5;
  --text-light: #e1e1e1;
  --text-soft: #cccccc;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-main);
  font-family: 'Roboto', sans-serif;
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  color: var(--accent-light);
}

p {
  color: var(--text-light);
}

section {
  margin: 100px auto;
}

h2 {
  font-size: 2rem;
  color: var(--accent-light);
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.banner {
  background-image: linear-gradient(to bottom, rgba(20, 114, 183, 0.2), rgba(10, 15, 23, 1)), url('../images/banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
  padding-top: 60px;
  border-bottom: 1px solid rgba(51, 102, 153, 0.5);
}

.banner .banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
  color: var(--text-light);
}

.banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  background: -webkit-linear-gradient(var(--accent-light), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
}

.banner p {
  font-size: 1.25rem;
  margin: 16px 0 24px;
}

.banner .logo {
  background-color: rgba(0, 0, 0, 0.2);
  height: 260px;
  width: 260px;
  margin: auto;
  border-radius: 50%;
  padding: 16px;
  margin-bottom: 16px;
}

.banner .logo img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner .banner-content button {
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: bold;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 4px;
  background-color: transparent;
  border: 2px solid transparent;
  border-image: linear-gradient(var(--accent), var(--accent-light));
  border-image-slice: 10;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.banner .banner-content button:hover {
  transform: scale(1.05);
}

#course-content {
  text-align: center;
}

#course-content .modules-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#course-content .modules-list .module {
  color: var(--text-light);
  width: 100%;
  max-width: 530px;
  border: 1px solid var(--accent-light);
  background-color: var(--bg-section);
  padding: 16px;
  border-radius: 100px;
  box-shadow: inset -5px 6px 8px rgba(0, 0, 0, 0.7);
  font-family: 'Courier Prime', monospace;
}

#course-content .modules-list .module span {
  color: var(--accent-light);
  font-family: 'Raleway', sans-serif;
}

#transform-world {
  width: 100%;
  height: 560px;
  background-size: cover;
  background-position: center;
  background-image: url("../images/woman-code.png");
  background-attachment: fixed;
  border-top: 1px solid rgba(51, 102, 153, 0.5);
  border-bottom: 1px solid rgba(51, 102, 153, 0.5);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  text-align: left;
}

#transform-world p {
  font-weight: 900;
  font-size: 2.5rem;
  max-width: 300px;
  color: var(--text-light);
  text-shadow: 2px 2px 3px rgba(51, 102, 153, 0.6);
  line-height: 1.05;
  white-space: pre-line;
}

#professional-challenges {
  text-align: center;
}

#professional-challenges img {
  margin: 32px 0;
  max-width: 100%;
}

#professional-challenges p {
  font-size: 1.06rem;
  line-height: 1.6;
}

footer {
  padding: 60px 0;
  text-align: center;
  background-color: var(--bg-section);
  border-top: 1px solid rgba(51, 102, 153, 0.5);
}

footer .dio-logo {
  width: 300px;
  max-width: 90%;
}

footer a {
  color: var(--accent-light);
  font-weight: bold;
  text-decoration: none;
} 