@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One:wght@400;500;600;700;800;900&display=swap");

:root {
  /* Updated Color Palette - Blend of existing HSi colors and modern trends */
  --bg-primary: #0d141f;
  --bg-secondary: #a1c911; /* New warm background tone */
  --bg-tertiary: #0abdf3; /* Darker shade of warm background */
  --bg-accent: #ce936f; /* New accent color (250, 192, 155) */
  --bg-brown: #a17865;

  /* HSi Brand Colors (preserved from original) */
  --hsi-blue: #116897;
  --hsi-blue2: #04151f;
  --hsi-green: #589460;
  --hsi-orange: #e99e62;
  --hsi-brown: #a17865;

  /* LinkedIn Integration Colors */
  --linkedin-blue: #0077b5;
  --linkedin-blue-hover: #005885;
  --linkedin-blue-light: rgba(0, 119, 181, 0.1);

  /* Text Colors */
  --text-primary: #e5e7eb;
  --text-secondary: #d3d8e0;
  --text-accent: #ffa947;
  --text-dark: #0a1116; /* For light backgrounds */

  /* Background Variants with Gradients */
  --background1: var(--bg-primary);
  --background2: linear-gradient(
    135deg,
    var(--bg-blue2) 0%,
    var(--bg-tertiary) 100%
  );
  --background3: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );

  /* Banner Styles with Gradient Transitions */
  --banner1-bg: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--hsi-blue2) 50%,
    var(--bg-secondary) 100%
  );
  --banner2-bg: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--hsi-blue2) 50%,
    var(--bg-brown) 100%
  );
  --banner3-bg: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--hsi-blue2) 50%,
    var(--bg-primary) 100%
  );
  --bannerb-bg: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--hsi-blue2) 50%,
    var(--bg-tertiary) 100%
  );

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Poiret One", cursive;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* Grid Layout Variables */
  --grid-gap: 2rem;
  --grid-margin: 1rem;
  --max-content-width: 1200px;

  /* Animation Variables */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.6s ease-out;
  --cubic-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
}

#app-wrapper {
  transform: scale(0.9);
  transform-origin: top left;
  width: calc(100% / 0.9);
  margin: 0 auto;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 90%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Heading Styles - Use Poiret One for all headings */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-normal);
  line-height: 1.2;
}






/* Banner heading styles */
.banner h1,
.banner h2,
.banner h3,
.banner-content h1,
.banner-content h2,
.banner-content h3,
.hero-title,
.feature-highlight h2 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-normal);
}

/* Theme Classes */
.background1 {
  background: var(--background1);
}
.background2 {
  background: var(--background2);
}
.background3 {
  background: var(--background3);
}

.accent {
  color: var(--bg-accent);
  font-weight: var(--font-weight-semibold);
}

/* Text Utilities */
.text-hsi-blue {
  color: var(--hsi-blue);
}
.text-hsi-green {
  color: var(--hsi-green);
}
.text-hsi-orange {
  color: var(--hsi-orange);
}
.text-accent {
  color: var(--bg-accent);
}
.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--text-secondary);
}

/* Background Utilities */
.bg-hsi-blue {
  background-color: var(--hsi-blue);
}
.bg-hsi-green {
  background-color: var(--hsi-green);
}
.bg-hsi-orange {
  background-color: var(--hsi-orange);
}
.bg-accent {
  background-color: var(--bg-accent);
}

/* Border Utilities */
.border-hsi-blue {
  border-color: var(--hsi-blue);
}
.border-hsi-green {
  border-color: var(--hsi-green);
}
.border-hsi-orange {
  border-color: var(--hsi-orange);
}
.border-accent {
  border-color: var(--bg-accent);
}

/* Button Base Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal) var(--cubic-smooth);
  transform: translateY(0);
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

/* CTA Button Specific Styles */
.cta-button {
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  background: var(--hsi-orange);
  color: white;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal) var(--cubic-smooth);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: var(--hsi-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Landing Page Styles */
.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.landing-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #a17865 0%,
    /* New warm background (top-left) */ #8b6f5c 25%,
    /* Intermediate warm tone */ #4a6168 40%,
    /* Transition zone */ #000000 50%,
    /* Moving toward dark */ #000000 100%
      /* Original dark background (bottom-right) */
  );
}
/* 
    #a17865 0%,     
    #8b6f5c 25%,   
    #4a5568 50%,    
    #2d3748 75%,    
    #0d1117 100%   */

.landing-hero {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 2rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--grid-gap);
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  z-index: 20;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.1;
  color: var(--text-accent);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-accent);
  margin-bottom: 2rem;
  font-weight: var(--font-weight-normal);
}

.hero-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--hsi-blue), var(--bg-primary));
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
}

.image-placeholder {
  background-image: url("../images/landingpage.png");
}

.hero-image-placeholder span {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.hero-image-placeholder p {
  font-size: 0.875rem;
  text-align: center;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-container {
    order: 2;
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-image-placeholder {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.lens-flare {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform;
}

.flare-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  z-index: 1;
}

.flare-arc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  transform-origin: center;
  box-sizing: border-box;
}
/* LinkedIn Profiles Section */
.linkedin-profiles-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.linkedin-section-title {
  text-align: center;
  color: var(--text-accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-normal);
}

.linkedin-profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.linkedin-profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-radius: 2.5rem; /* Squircle appearance */
  transition: all var(--transition-normal);
}

.profile-info {
  flex: 1;
  padding-right: 2rem; /* Ensure name doesn't touch the link/icon */
}

.profile-name {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
  font-family: var(--font-primary);
}

.profile-title {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.linkedin-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--linkedin-blue);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.linkedin-link:hover {
  background: var(--linkedin-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.linkedin-link:focus {
  outline: 2px solid var(--linkedin-blue-light);
  outline-offset: 2px;
}

.linkedin-icon {
  font-weight: bold;
  font-size: 1rem;
  background: white;
  color: var(--linkedin-blue);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}

.linkedin-text {
  font-family: var(--font-primary);
}

/* Responsive adjustments for LinkedIn profiles */
@media (max-width: 768px) {
  .linkedin-profiles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .linkedin-profile-card {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .linkedin-link {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .linkedin-section-title {
    font-size: 1.125rem;
  }

  .profile-name {
    font-size: 1rem;
  }

  .linkedin-profile-card {
    padding: 0.75rem;
  }
  
}
