/*
Theme Name: Orion Sentry Child
Template: twentytwentyfour
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #111;
  min-height: 100vh;
  color: #fff;
}

.hero-section {
  background: #111;
  padding: 64px 0 32px 0;
  text-align: center;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.logo {
  width: 90px;
  margin-bottom: 18px;
  animation: logo-pulse 2.2s ease-in-out infinite;
}

@keyframes logo-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 24px #0093c933;
}
.subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.3;
  color: #09c;
  letter-spacing: 0.5px;
}
.main-laptop {
  width: 550px;
  max-width: 95vw;
  display: block;
  margin: 32px auto 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  filter: none;
}

.features-section {
  background: #fff;
  padding: 64px 0;
}
.features-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
.feature-img {
  box-shadow: none !important;
  background: transparent !important;
  width: auto;
  max-width: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.feature-img img {
  width: 240px;
  max-width: 90vw;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}
.feature-text {
  max-width: 600px;
}
.feature-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 18px;
  color: #09c;
  white-space: nowrap;
}
.feature-text p {
  color: #fff !important;
  font-size: 1.15rem;
  line-height: 1.7;
}

.ios-section {
  background: #fff;
  padding: 64px 0 32px 0;
}
.ios-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 120px;
}
.ios-text {
  max-width: 480px;
}
.ios-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0;
  color: #0093c9;
}
.ios-text ul {
  padding-left: 20px;
  margin: 0;
  color: #222;
  font-size: 1.08rem;
}
.ios-img {
  box-shadow: none !important;
  background: transparent !important;
  width: auto;
  max-width: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ios-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.video-section {
  background: #111;
  padding: 64px 0 32px 0;
  text-align: center;
}
.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 32px auto;
  background: #000;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  top: 0; left: 0;
}
.appstore-badge {
  display: block;
  margin: 48px auto 0 auto;
  width: 210px;
  max-width: 80vw;
  height: auto;
  transition: transform 0.2s, box-shadow 0.2s;
  filter: drop-shadow(0 0 16px #0093c9aa);
}
.appstore-badge.pulse {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); box-shadow: 0 4px 24px #0093c955; }
  100% { transform: scale(1); }
}
.appstore-badge:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 24px #0093c9cc;
}

.contact-section {
  background: #fff;
  padding: 64px 0 32px 0;
  text-align: center;
}
.contact-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0093c9;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-section input,
.contact-section textarea {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background: #f8f8f8;
  transition: border 0.2s;
}
.contact-section input:focus,
.contact-section textarea:focus {
  border: 1.5px solid #0093c9;
  outline: none;
}
.contact-section textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-section button {
  background: #0093c9;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,147,201,0.10);
}
.contact-section button:hover {
  background: #0077a6;
  box-shadow: 0 4px 16px rgba(0,147,201,0.18);
}

.footer-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 32px 0 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  margin-bottom: 28px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 4px;
}

.footer-company {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
}

.footer-links {
  text-align: center;
  margin: 16px 0;
  font-size: 0.8rem;
  color: #09c;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-links a {
  color: #09c;
  text-decoration: underline;
  margin: 0 4px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding-right: 0;
  margin-bottom: 32px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(100%) invert(0%);
  transition: filter 0.2s, transform 0.2s;
}

.footer-icon:hover {
  filter: brightness(150%) drop-shadow(0 0 8px #09c);
  transform: scale(1.08);
}

.card {
  background: #181818;
  border: 2.5px solid #222;
  border-radius: 32px;
  box-shadow: 0 4px 32px #000a;
  padding: 48px 40px;
  margin: 48px auto;
  max-width: 1100px;
  width: 95%;
  color: #fff;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  box-shadow: 0 8px 48px #0093c955, 0 2px 12px #0008;
  border-color: #0093c9;
}
.card h2, .card label {
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.card p, .card ul, .card li {
  color: #ccc;
  font-size: 1.15rem;
  line-height: 1.7;
}
.features-card, .ios-card, .contact-card {
  margin-bottom: 56px;
}
.features-container, .ios-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.feature-img img, .ios-img img {
  width: 240px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 2px 24px #0093c955, 0 2px 12px #0008;
}
.feature-text, .ios-text {
  max-width: 480px;
}
.feature-text h2, .ios-text h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 18px;
  color: #0093c9;
}
.feature-text p, .ios-text ul, .contact-card form {
  font-size: 1.13rem;
  color: #222;
  line-height: 1.7;
}
.ios-text ul {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: disc inside;
}
.ios-text ul li {
  margin-bottom: 12px;
  font-size: 1.13rem;
}
.contact-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
.contact-card input,
.contact-card textarea {
  padding: 14px;
  border-radius: 16px;
  border: 1.5px solid #222;
  font-size: 1rem;
  background: #222;
  color: #fff;
  transition: border 0.2s, background 0.2s;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border: 1.5px solid #0093c9;
  outline: none;
  background: #181818;
}
.contact-card textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-card button {
  background: #0093c9;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #0093c955;
}
.contact-card button:hover {
  background: #0077a6;
  box-shadow: 0 4px 16px #0093c9cc;
}
.ios-card {
  max-width: 1100px;
  width: 95%;
  padding: 48px 40px;
  margin: 48px auto 56px auto;
}

.hero-card {
  max-width: 1100px;
  width: 95%;
  padding: 48px 40px;
  margin: 48px auto 0 auto;
  background: #181818;
  border: 2.5px solid #222;
  border-radius: 32px;
  box-shadow: 0 4px 32px #000a;
  color: #fff;
  display: block;
}

.hero-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-img .main-laptop {
  width: 442px;
  max-width: 90vw;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  display: block;
}

.hero-card-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-card-text .subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #09c;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* FjarlÃÂ¦gjum footer-brand og tengt CSS */

@media (max-width: 900px) {
  .features-container, .ios-container {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
  }
  .feature-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .feature-img img {
    display: block;
    margin: 0 auto;
  }
  .card {
    padding: 32px 4vw;
  }
  .hero-card-container {
    flex-direction: column;
    gap: 32px;
  }
  .hero-card {
    padding: 32px 4vw;
  }
  .hero-card-img .main-laptop {
    width: 100%;
    min-width: 0;
  }
  .hero-card-text .subtitle {
    text-align: center;
  }
}
@media (max-width: 600px) {

  .contact-card input,
  .contact-card textarea,
  .contact-card button {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .card, .features-card, .ios-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 8px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .features-container, .ios-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  .feature-img, .ios-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .feature-img img, .ios-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
    width: 100%;
    height: auto;
  }
  .feature-text, .ios-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0 8px;
    box-sizing: border-box;
    word-break: break-word;
  }
  .feature-text h2, .feature-text p,
  .ios-text h2, .ios-text p {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }
  .features-card, .ios-card, .contact-card {
    margin-bottom: 32px;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .footer-section {
    padding: 20px 8px 0 8px;
  }
  .footer-top {
    max-width: 100%;
  }
  .footer-links {
    font-size: 0.7rem;
    margin: 12px 0;
    gap: 6px;
  }
  .footer-links a {
    color: #09c;
    text-decoration: underline;
    margin: 0 3px;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #fff;
  }
  .feature-img img {
    width: 80vw;
    max-width: 320px;
    min-width: 0;
    display: block;
    margin: 0 auto 18px auto;
  }
  .feature-text {
    text-align: center;
    padding: 0 8px;
    margin-top: 0;
  }
  .ios-img {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .feature-img {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .ios-img img {
    max-width: 56vw;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
} 