/* style.css - Premium futuristic styling for KorInfoTechAB homepage */

:root {
  --bg-dark: #070a13;
  --bg-card: rgba(13, 22, 43, 0.45);
  --border-neon: rgba(0, 240, 255, 0.25);
  --color-primary: #00f0ff;
  --color-secondary: #ff007f;
  --color-text-main: #f8fafc;
  --color-text-sub: #94a3b8;
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Ambient glow spheres */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  top: 15%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: var(--color-primary);
}

.orb-2 {
  bottom: 15%;
  right: 20%;
  width: 450px;
  height: 450px;
  background: var(--color-secondary);
}

/* Cyberpunk tech grid background */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Profile Card - Glassmorphism style */
.profile-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  padding: 32px 28px;
  box-sizing: border-box;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
              0 0 30px rgba(0, 240, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* Header */
.profile-header {
  text-align: center;
}

.terminal-badge {
  display: inline-block;
  font-family: monospace;
  font-size: 0.6rem;
  color: var(--color-primary);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.logo-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 2px;
  color: #ffffff;
}

.highlight {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.subtitle {
  font-family: var(--font-title);
  font-size: 0.65rem;
  color: var(--color-text-sub);
  letter-spacing: 3px;
  margin: 6px 0 0 0;
  font-weight: 700;
}

/* Bio Text */
.bio-content {
  text-align: center;
}

.bio-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
}

.accent {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 1.5px solid var(--color-secondary);
  padding-bottom: 1px;
}

/* Featured App Section */
.featured-project h3 {
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--color-text-sub);
  margin: 0 0 10px 0;
  font-weight: 700;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.project-icon {
  font-size: 1.8rem;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.project-details h4 {
  font-size: 0.85rem;
  margin: 0 0 4px 0;
  color: #ffffff;
  font-weight: 600;
}

.project-details p {
  font-size: 0.72rem;
  margin: 0;
  color: var(--color-text-sub);
  line-height: 1.4;
}

/* Button & Footer */
.profile-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.connect-prompt {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  margin: 0;
}

.connect-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #0d1e3a 0%, #060b15 100%);
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  padding: 16px 20px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.connect-btn:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.25);
}

.connect-btn:active {
  transform: translateY(1px);
}

.btn-text {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.btn-email {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.connect-btn:hover .btn-email {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.page-footer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

/* Responsiveness */
@media (max-width: 480px) {
  body {
    overflow-y: auto;
    align-items: flex-start;
    padding-top: 40px;
  }
  
  .profile-card {
    padding: 24px 20px;
    gap: 22px;
  }
}
