@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Outfit:wght@500;600&display=swap');

:root {
  --primary-color: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --bg-dark: #000000;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-gradients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0b132b;
  background-image: url("assets/gradient_pozadina.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}



/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 32px;
}

.login-btn {
  background-color: #ffffff;
  color: #141416;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-btn img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.login-btn:hover img {
  transform: translateX(2px) translateY(-2px);
}

/* Main Content */
main {
  display: flex;
  min-height: 100vh;
  padding: 120px 80px 80px 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.text-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #ffffff;
}

.subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 420px;
}

.app-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  min-width: 188px;
  width: max-content;
  height: 50px;
  padding: 0 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  gap: 8px;
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-btn.google-play {
  background-color: #ffffff;
}

.app-btn.app-store {
  background-color: #141416;
}

.app-btn img {
  height: auto;
  width: auto;
  display: block;
}

/* Image Container */
.image-content {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 1200px;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.3));
  transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}
/* Footer */
footer {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 10;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--text-primary);
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.divider {
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 64px;
  }

  main {
    padding: 100px 60px 60px 80px;
  }

  .image-content {
    right: -10%;
    width: 70%;
  }
}

@media (max-width: 992px) {
  header {
    padding: 30px 40px;
  }

  main {
    flex-direction: column;
    padding: 120px 40px 60px 40px;
    text-align: center;
    align-items: center;
  }

  .text-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .subtitle {
    max-width: 100%;
  }

  .image-content {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 60px;
  }

  footer {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px 40px;
    justify-content: center;
    display: flex;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }

  .app-buttons {
    flex-direction: column;
    width: 100%;
  }

  .app-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .divider {
    display: none;
  }
}