@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&family=Roboto:wght@100;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,400;0,900;1,600&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Poppins:wght@200&display=swap");
@import url("./styles/about.css");
@import url("./styles/color.css");
@import url("./styles/main.css");
@import url("./styles/info.css");
@import url("./styles/contact.css");
@import url("./styles/photo-grid.css");
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.divider {
  border: 2px solid var(--color-primary);
  border-radius: 5px;
  width: 10%;
  margin: auto;
}
br {
  display: block; /* makes it have a width */
  content: ""; /* clears default height */
  margin-top: 12px; /* change this to whatever height you want it */
}
a {
  color: #fff;
}

ul {
  list-style: none;
}

p {
  line-height: 2.25rem;
  color: #c4c1c1;
  font-size: 16px;
}

body {
  background-color: #1f1f1f;
  color: #fff;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  max-width: 100%;
  overflow-x: hidden;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#scroll-btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 4.25rem;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
}

#scroll-btn:hover {
  background-color: var(--color-primary-dark);
}

.arrow {
  border: solid white;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.logo {
  font-size: 1.5rem;
  color: var(--color-primary);
}
.logo span {
  color: #fff;
}

.navigation a {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 30px;
}

.navigation a:hover {
  color: var(--color-primary);
}

/* Navigation Menu */
/* Navbar */
.navbar {
  width: 100vw;
  height: auto;
  background: linear-gradient(to top, #0b0a1f, #18153d);
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%),
    0 0 2px rgb(0 0 0 / 7%);
  position: fixed;
  z-index: 99;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.navbar ul {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

.navbar li {
  margin: 0 15px;
}
.navbar a {
  color: #f0f0f0;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 15px;
}
.navbar-brand a {
  font-family: "Comfortaa", sans-serif;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
}
.navbar-brand span {
  color: white;
}
.navbar li:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  display: block;
  transition: all 0.3s ease;
  bottom: 25%;
}
.navbar li {
  position: relative;
}

.navbar li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
}

.navbar li a:hover::after,
.navbar li a:focus::after {
  width: 100%;
  left: 0;
}

.navbar-nav-right li:first-child a {
  display: flex;
  align-items: center;
}

.navbar-nav-right li:nth-child(2) {
  margin: 0 5px;
}

.xlogo-navbar img {
  width: 180px;
  height: auto;
}

/* Hamburger Menu Icon */
.hamburger {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  z-index: 10;
  transition: all 0.25s;
  display: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: rotate(0);
  transition: all 0.5s;
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Mobile Menu background-color: #050505;*/
.mobile-menu {
  position: fixed;
  right: 0;
  background: linear-gradient(to top, #0b0a1f, #18153d);
  color: #fff;
  width: 90%;
  height: 100vh;
  padding: 100px 30px;
  box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%),
    inset 0 4px 2px -2px rgb(0 0 0 / 7%);
  transition: all 0.3s;
  z-index: 9;
}

.mobile-menu ul {
  line-height: 3;
  border-bottom: #777 solid 1px;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.mobile-menu a:hover {
  color: var(--color-primary);
}

.mobile-menu a {
  display: inline-block;
  align-items: center;
  font-size: 1rem;
  margin-top: 12px;
  text-decoration: none;
}

.hidden {
  transform: translateX(100%);
}

.no-scroll {
  overflow: hidden;
}

/* End Of Navigation Menu  */

/* General Section Styling */
section {
  padding: 100px 200px;
}

/* Main Section Styling */
/* .main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    url(images/main-bg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
} */

/* Horizontal scanlines (CRT effect) */
.main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 2px,
    transparent 2px,
    transparent 6px
  );
  animation: scanlines 0.3s linear infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  will-change: background-position;
}

/* Vertical film scratches – bold, white, and animated */
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255, 255, 255, 0.3) 0px,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px,
    transparent 5px
  );
  animation: filmScratches 1.5s linear infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: lighten;
  opacity: 0.3;
}

/* Animations */
@keyframes scanlines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 6px;
  }
}

@keyframes filmScratches {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -10px 0;
  }
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* Content Styling */
.content {
  text-align: left;
  color: white;
  z-index: 1; /* Ensure content is above the video */
}

.xlogo-main img {
  width: 400px;
  height: auto;
}

.main h3 {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 4px;
  margin-bottom: 30px;
}

.main-btn {
  color: #fff;
  background-color: var(--color-primary);
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  display: inline-block;
  padding: 0.8em 2em;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-top: 64px;
  margin-bottom: 32px;
  transition: 0.7s ease;
  border-radius: 4px;
}

.main-btn:hover {
  background-color: var(--color-primary-dark);
  transition-duration: 0.4s;
}

.social-icons a {
  color: #fff;
  font-size: 1.3em;
  padding: 0 14px 0 0;
}

/* Main */
.container {
  padding: 50px 0px;
  width: 75%;
  margin: auto;
}

/* === HEADING STYLE #1 === */
.title {
  text-transform: capitalize;
  background-image: linear-gradient(
    -225deg,
    #fff 0%,
    #f0f0f0 29%,
    var(--color-primary) 67%,
    var(--color-primary-dark) 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  margin-top: 128px;

  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.title-x {
  text-align: center;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-top: 128px;
}

.konzept {
  margin: 32px 0px;
}

.concept p {
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: justify;
  hyphens: auto;
}
/* END Main */

hr.solid {
  border-top: 1px solid #bbb;
  margin: 32px 64px;
}

.footer {
  background-color: #050505;
  color: #fff;
  padding: 5em 2rem;
  display: flex;
  justify-content: space-between;
}

.footer-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-title p {
  font-size: 0.75em;
}

.footer-title img {
  width: 140px;
  height: auto;
}

.policy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer .social-icons a {
  color: whitesmoke;
  font-size: 1.3em;
  padding: 0 14px 0 0;
}

@media (max-width: 1060px) {
  .navigation a {
    padding-left: 10px;
  }

  .title {
    font-size: 1.4em;
  }

  section {
    padding: 80px 20px;
  }

  .main-content h2 {
    font-size: 1em;
  }

  .main-content h3 {
    font-size: 1.6em;
  }
  .main-title h1 {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--color-primary);
  }
  .main-wrapper {
    display: flex;
    flex-direction: column;
  }

  .main-wrapper-reversed {
    display: flex;
    flex-direction: column;
  }

  .konzept {
    padding: 4px 16px;
  }
  .concept p {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: justify;
    hyphens: auto;
  }
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer .policy {
    align-self: flex-start;
  }
  .footer .social-icons {
    margin-top: 32px;
  }
}

@media (max-width: 960px) {
  .hero-title h1 {
    font-size: 3rem;
  }
  .about {
    display: flex;
    flex-direction: column;
  }
  .about img {
    align-self: center;
  }
  .about-reverse {
    display: flex;
    flex-direction: column;
  }
  .about-reverse img {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar .navbar-nav-left,
  .navbar .navbar-nav-right {
    display: none;
  }
  .main {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15)),
      url(images/main_mobile.jpg);
  }
}

@media (max-width: 641px) {
  body {
    font-size: 16px;
  }

  .main-content h2 {
    font-size: 0.8em;
  }

  .main-content h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

.neon-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 64px;
  margin-bottom: 16px;
  position: relative;
  background: transparent;
  color: #6ee1f5;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid #6ee1f5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover state with reduced glow */
.neon-button:hover {
  background: #6ee1f5;
  color: #111;
  box-shadow: 0 0 5px #6ee1f5, 0 0 10px #6ee1f5, 0 0 20px #6ee1f5;
}

/* Focus state */
.neon-button:focus {
  outline: none;
  box-shadow: 0 0 5px #6ee1f5, 0 0 10px #6ee1f5, 0 0 20px #6ee1f5,
    0 0 0 3px rgba(0, 136, 255, 0.5);
}

/* Active state */
.neon-button:active {
  transform: translateY(1px);
}

/* Send Button effect */
input.neon-button[type="submit"] {
  padding: 12px 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  font-family: inherit;
  display: inline-block;
  position: relative;
  background: transparent;
  color: #666cf1;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid #666cf1 !important;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover state with reduced glow */
input.neon-button[type="submit"]:hover {
  background: #666cf1;
  color: #111;
  box-shadow: 0 0 5px #666cf1, 0 0 10px #666cf1, 0 0 20px #666cf1;
}

/* Focus state */
input.neon-button[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 5px #666cf1, 0 0 10px #666cf1, 0 0 20px #666cf1,
    0 0 0 3px rgba(0, 136, 255, 0.5);
}

/* Active state */
input.neon-button[type="submit"]:active {
  transform: translateY(1px);
}

/*   something new */
:root {
  /* Light mode colors */
  --card-bg: linear-gradient(145deg, #f8f9fa, #ffffff);
  --card-border: rgba(0, 0, 0, 0.05);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --icon-color: #666cf1;
  --icon-shadow: rgba(102, 108, 241, 0.3);
  --title-color: #2d3748;
  --text-color: #4a5568;
  --accent-gradient: linear-gradient(90deg, #666cf1, #a855f7);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode colors */
    --card-bg: linear-gradient(145deg, #1a1b1e, #2d2f34);
    --card-border: rgba(255, 255, 255, 0.05);
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
    --icon-color: #8a92ff;
    --icon-shadow: rgba(138, 146, 255, 0.4);
    --title-color: #f0f0f0;
    --text-color: #cbd5e0;
    --accent-gradient: linear-gradient(90deg, #8a92ff, #c084fc);
  }
}

.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  max-width: 300px;
  border: 1px solid var(--card-border);
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 12px 12px 0 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.card-icon {
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px var(--icon-shadow));
  fill: var(--icon-color);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--title-color);
  font-weight: 600;
}

.card-description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}
