/* Modern Split-Screen Design - Light Theme */
:root {
  /* Brand Colors */
  --brand-blue: #012c6e;
  --brand-red: #ce142b;
  --brand-red-hover: #a81023;

  /* Light Theme Variables */
  --bg-body: #ffffff;
  --bg-sidebar: #f4f6f9;
  --text-primary: #012c6e;
  --text-secondary: #4a5568;
  --border-color: #e2e8f0;

  /* Typography */
  --font-main: 'Outfit', sans-serif;

  /* Spacing */
  --sidebar-width: 400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.layout-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  /* Mobile first */
}

/* Sidebar Styles */
.hero-sidebar {
  background-color: var(--bg-sidebar);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-content {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(1, 44, 110, 0.15);
  border: 4px solid #fff;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Social Icons in Sidebar */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.social-links a:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-links img {
  width: 20px;
  height: 20px;
  /* Filter to match brand blue */
  filter: invert(13%) sepia(60%) saturate(2794%) hue-rotate(208deg) brightness(93%) contrast(103%);
}

/* Content Area Styles */
.content-area {
  padding: 3rem 2rem;
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 4rem;
}

.section-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-color);
  max-width: 100px;
}

.lead-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-blue);
  line-height: 1.4;
}

.highlight-box {
  background-color: rgba(1, 44, 110, 0.03);
  border-left: 4px solid var(--brand-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 1.1rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  list-style: none;
  margin: 2rem 0;
}

.values-grid li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.values-grid li:hover {
  border-color: var(--brand-blue);
  transform: translateX(5px);
}

.value-icon {
  font-size: 1.5rem;
}

.value-text {
  font-weight: 600;
  color: var(--brand-blue);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-red);
  color: #fff;
  border: 2px solid var(--brand-red);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  background-color: rgba(1, 44, 110, 0.03);
}

/* Desktop Layout */
@media (min-width: 900px) {
  .layout-container {
    flex-direction: row;
  }

  .hero-sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: sticky;
    top: 0;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
    padding: 4rem;
    text-align: left;
    justify-content: space-between;
  }

  .sidebar-content {
    margin: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .profile-avatar {
    margin: 0 0 2rem 0;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: auto;
  }

  .content-area {
    padding: 5rem 4rem;
    max-width: 900px;
    /* Allow more width on desktop */
    margin: 0;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .action-buttons {
    flex-direction: row;
  }

  .btn {
    min-width: 200px;
  }
}

/* Footer Styles */
.site-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.brand-agency {
  color: var(--brand-red);
  font-weight: 600;
}

.brand-tech {
  color: var(--brand-blue);
  font-weight: 600;
}