/* 
 * Design System - vkchavda.in
 * A premium light-themed, scroll-less landing page.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Noto+Serif+Devanagari:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-color: #FAF9F6;         /* Premium warm white (Alabaster) */
  --card-bg: rgba(255, 255, 255, 0.75); /* Frosted glass */
  --card-border: rgba(0, 0, 0, 0.05); /* Subtly visible borders */
  --primary-text: #0F172A;     /* Rich dark grey/black */
  --secondary-text: #475569;   /* Muted grey */
  --accent-color: #2563EB;     /* Royal blue */
  --accent-glow: rgba(37, 99, 235, 0.05);
  --success-color: #10B981;    /* Emerald green */
  --border-radius-lg: 24px;
  --border-radius-sm: 99px;
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'Inter', monospace;
  --font-devanagari: 'Noto Serif Devanagari', serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--primary-text);
  min-height: 100vh;
  min-height: 100dvh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}/* Background Grid Pattern */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
/* Header - Jai Shree Ganesh */
header {
  z-index: 10;
  text-align: center;
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ganesh-text {
  font-family: var(--font-devanagari);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-text);
  letter-spacing: 0.15em;
  opacity: 0.85;
  transition: color 0.3s ease;
}

.ganesh-text:hover {
  color: var(--primary-text);
}

/* Main Container */
main {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin: auto;
  animation: scaleUpReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Content Wrapper Styling */
.content-wrapper {
  padding: 2rem 1rem;
  width: 100%;
  text-align: center;
  position: relative;
}



/* Profile Image & Google Ring */
.profile-image-container {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-ring {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 4px; /* Slightly thicker ring for larger size */
  background: conic-gradient(
    from -45deg,
    #ea4335 0% 25%,   /* Google Red */
    #4285f4 25% 50%,  /* Google Blue */
    #34a853 50% 75%,  /* Google Green */
    #fbbc05 75% 100%  /* Google Yellow */
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 
    0 12px 30px -10px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4.5px solid #FAF9F6; /* Proportionate inner white border gap */
  background-color: #FAF9F6;
  user-select: none;
  -webkit-user-drag: none;
}

.profile-ring:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.03);
  padding: 5px 12px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--secondary-text);
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--success-color);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}

/* Text Styling */
h1 {
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--primary-text);
  margin-bottom: 0.75rem;
}

.title-accent {
  background: linear-gradient(135deg, #1e293b 30%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: clamp(0.85rem, 1.2vw, 0.92rem);
  font-weight: 500;
  color: var(--secondary-text);
  max-width: 480px;
  margin: 0 auto 2rem auto;
  line-height: 1.5;
}

/* Coming Soon Text */
.coming-soon-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  background: rgba(37, 99, 235, 0.06);
  padding: 6px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

/* Footer & Social Links */
footer {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.social-links a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0);
}

.social-links a:hover {
  color: var(--primary-text);
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--secondary-text);
  opacity: 0.6;
}

/* Animations declarations in separate stylesheet, but referencing them here */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Standard hand pointer cursor on hover for interactive elements */
a, button, .ganesh-text, .coming-soon-label, .profile-ring {
  cursor: pointer !important;
}


