body {
  margin: 0;
  padding: 0;
  background-image: url("images/b1.jpg");
  background-size: cover;
  background-position: center;
  color: var(--icon-one-color);
}


.header {
  display: flex;                /* Activates Flexbox on the parent container */
  justify-content: space-evenly; /* same gapping */
  align-items: center;          /* Vertically centers items within the header */
  padding: 0 20px;              /* Adds some horizontal spacing (adjust as needed) */
}


.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* Padding for small screens */
  margin-top: 70px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 840px));
  gap: 2rem;
}

.content {
  max-width: 1280px;
}

.tech-stack {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.info {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
}

.column {
  text-align: center;
  background-color: var(--main-font-color);
  border-radius: 8px;
  padding: 2rem;
}

.app-preview img {
  display: block;                 /* allow horizontal centering */
  width: clamp(320px, 60vw, 960px); /* responsive width using clamp */
  max-width: 100%;                /* never overflow container */
  height: auto;                   /* preserve aspect ratio */
  margin: 1.5rem auto;            /* center with auto margins */
  border: 2px solid var(--icon-one-color);
  border-radius: 12px;
}

/* === Quote Styling === */
.apps-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  border-left: 4px solid #00ffff; /* fallback */
  color: #00ffff; /* fallback */
  background-color: #080020b7; /* matches card-bg-color */
  border-radius: 8px;
  max-width: 800px;
}

/* Modern OKLCH overrides */
@supports (color: oklch(0.9 0.2 200)) {
  .apps-quote blockquote {
    border-left: 4px solid oklch(0.9 0.2 200);
    color: oklch(0.9 0.2 200);
  }
}


@media (max-width: 1280px) {

}

@media screen and (max-width: 768px) {

}

