/* Modern reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  background-color: #030303;
  color: #ffffff;
  overflow: hidden;
}

/* Container for all content */
.container {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

/* Navbar styling */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.025em;
}

.tech-text {
  color: rgba(248, 250, 252, 0.7);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-button {
  background-color: transparent;
  border: none;
  color: #a1a1aa;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-button:hover {
  color: #f8fafc;
  background-color: rgba(63, 63, 70, 0.3);
}

.nav-button.primary {
  background-color: rgba(63, 63, 70, 0.8);
  color: #f8fafc;
  border: 1px solid rgba(82, 82, 91, 0.5);
}

.nav-button.primary:hover {
  background-color: rgba(82, 82, 91, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Hero section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
  flex: 1;
  max-height: 70vh;
}

.hero-content {
  max-width: 40%;
  z-index: 5;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(90deg, #a1a1aa, #f8fafc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  font-weight: 400;
  margin-bottom: 2rem;
}

/* Simple gradient overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(125deg, #080808, #101012, #18181b, #101012, #080808);
  background-size: 300% 300%;
  animation: gradientAnimation 8s ease infinite;
  filter: blur(40px);
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation link styles */
.nav-button {
  text-decoration: none;
}

.logo {
  text-decoration: none;
}

/* Floating elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-card {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: rgba(39, 39, 42, 0.2);
  border: 1px solid rgba(63, 63, 70, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.floating-card:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 120px;
  height: 120px;
  transform: rotate(10deg);
  animation: float-1 20s ease-in-out infinite alternate;
}

.floating-card:nth-child(2) {
  bottom: 25%;
  right: 15%;
  width: 180px;
  height: 180px;
  transform: rotate(-15deg);
  animation: float-2 25s ease-in-out infinite alternate;
}

.floating-card:nth-child(3) {
  top: 60%;
  left: 25%;
  width: 100px;
  height: 100px;
  transform: rotate(25deg);
  animation: float-3 18s ease-in-out infinite alternate;
}

@keyframes float-1 {
  0% { transform: translate(0, 0) rotate(10deg); }
  100% { transform: translate(30px, 30px) rotate(15deg); }
}

@keyframes float-2 {
  0% { transform: translate(0, 0) rotate(-15deg); }
  100% { transform: translate(-40px, 20px) rotate(-5deg); }
}

@keyframes float-3 {
  0% { transform: translate(0, 0) rotate(25deg); }
  100% { transform: translate(20px, -30px) rotate(20deg); }
}

/* Image container styles */
.image-container {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.3));
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.image-glow {
  position: absolute;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(127, 127, 127, 0.3) 0%, rgba(39, 39, 42, 0) 70%);
  filter: blur(60px);
  z-index: 1;
  border-radius: 50%;
  transform: translateY(10%);
  opacity: 0.8;
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(0.95) translateY(10%); }
  100% { opacity: 0.9; transform: scale(1.05) translateY(8%); }
}

/* shadcn-inspired footer */
footer {
  width: 100%;
  padding: 2rem;
  background-color: transparent;
  text-align: center;
  margin-top: auto;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.footer-content {
  position: relative;
  overflow: hidden;
}

.footer-text {
  font-size: 0.8125rem;
  color: #f8fafc;
  font-weight: 500;
  letter-spacing: 0.025em;
  background-color: rgba(39, 39, 42, 0.8);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: inline-block;
  cursor: default;
  user-select: none;
  border: 1px solid rgba(63, 63, 70, 0.5);
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.footer-text:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  border-color: rgba(82, 82, 91, 0.8);
}

.footer-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50px;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}
