/* Override theme colors */
:root {
  --primary-color: #FF6B00;
  --bg-color: #1a1a1a;
}

/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  background: var(--bg-color) !important;
}

body {
  position: relative;
  background: var(--bg-color) !important;
}

/* Text color overrides */
a, .highlight-title, .highlight-link, 
.timeline-wrapper .flag span:after,
.contact-icons .social-link .social-svg,
#skills input[type=radio]:checked + .filter-button {
  color: var(--primary-color) !important;
  fill: var(--primary-color) !important;
}

/* Background color overrides - only for specific elements */
#preloader {
  background: var(--bg-color) !important;
}

#preloader .load :nth-child(2), 
#preloader .load :last-child,
.timeline-wrapper .hexagon, 
.timeline-wrapper .hexagon:before, 
.timeline-wrapper .hexagon:after {
  background-color: var(--primary-color) !important;
}

.highlight-title {
  text-shadow: 0.25rem 0.25rem 0.25rem var(--primary-color) !important;
}

.highlight-link {
  box-shadow: inset 0 -0.125rem 0 var(--primary-color) !important;
}

.highlight-link:hover {
  box-shadow: inset 0 -2rem 0 0 var(--primary-color) !important;
}

/* Make particles background fixed */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: transparent !important;
}

/* Ensure content is above particles */
#landing {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

#landing .landing-title {
  background: transparent !important;
}

#landing .landing-title h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.layout, .footer {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* Make cards less transparent */
.card {
  background: rgba(26, 26, 26, 0.85) !important;
}

/* Choose Side Section Styles */
.choose-side-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.side-column {
  flex: 1;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.85) !important;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.side-column:hover {
  transform: translateY(-5px);
}

.side-column h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.side-content {
  color: #fff;
}

.side-content p {
  margin-bottom: 1.5rem;
}

.side-content ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 2rem;
}

.side-content ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.side-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.side-content .highlight-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.hardware-image {
  margin: 2rem 0;
  text-align: center;
}

.hardware-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .choose-side-container {
    flex-direction: column;
  }
  
  .side-column {
    margin-bottom: 1rem;
  }
} 