/* index.css */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom, #eef2f3, #ffffff);
  color: #333;
  scroll-snap-type: y mandatory;
}

.container {
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

header {
  background-color: #0a3d62;
  color: white;
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
  margin-bottom: 0.5rem;
}

section {
  margin-top: 2rem;
}

h2 {
  color: #0a3d62;
  border-left: 5px solid #0a3d62;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #0a3d62;
}

a {
  color: #0a3d62;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  background-color: #0a3d62;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

.company-name {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0a3d62;
  background: linear-gradient(90deg, #f9ca24 30%, #0a3d62 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 8px #fff7, 0 2px 8px #0a3d6222;
}

.appeal {
  font-size: 1.25rem;
  color: #f7f7f7;
  background: transparent;
  /* border-left: 4px solid #0a3d62; */
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  /* box-shadow: 0 2px 8px #cad8e111; */
}

.typing-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
  white-space: pre;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.logo-svg {
  vertical-align: middle;
  height: 48px;
  width: auto;
  /* max-width: 100%; */
  /* transition: transform 0.2s; */
}

.logo-link:hover .logo-svg {
  transform: scale(1.04) rotate(-2deg);
}

.logo-title-row {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}

.company-title {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  /* background: linear-gradient(90deg, #f9ca24 20%, #0a3d62 80%); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 1px 1px 8px #fff7, 0 2px 8px #0a3d6222;
  margin: 0;
  padding: 0;
}

.blinking-cursor {
  display: inline-block;
  width: 1ch;
  color: #c4dae9;
  animation: blink-cursor 0.8s steps(1) infinite;
  font-weight: bold;
  font-size: 1em;
  vertical-align: baseline;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-section,
.slide-section {
  min-height: 55vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  padding-left: 10rem;
}

.hero-section {
  background: linear-gradient(rgba(10,61,98,0.55), rgba(10,61,98,0.55)), url('stactic/img/headway-5QgIuuBxKwM-unsplash.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 2rem 3rem 2rem;
  box-shadow: 0 4px 24px #0a3d6222;
  margin-bottom: 2.5rem;
  margin-top: 0rem;
  position: relative;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 600px) {
  .hero-section,
  .slide-section {
    padding-left: 5rem;
  }
}

@media (max-width: 400px) {
  .hero-section,
  .slide-section {
    padding-left: 3rem;
  }
}