﻿
html {
  scroll-behavior: smooth;
}


/* Main logo styling for h1 */
.my-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #333;
}

/* Highlighted part of the logo */
.my-logo .highlight {
  color: #a5d6cc;
}

/* Divider under the logo */
.logo-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 5px;
}

/* Subtitle for h2 */
.my-logo-subtitle {
  font-family: 'Merriweather', sans-serif;
  font-weight: 100;
  margin-top: 1rem; /* Margin top as per original inline style */
}

/* Software Engineering text styling */
.my-logo-subtitle .text-software {
  color: #16A085;
}

/* Data Sculpting text styling */
.my-logo-subtitle .text-data {
  font-family: 'Merriweather', serif;
  font-weight: 300;
  color: #D35400;
}

.mirrored {
  transform: scaleX(-1);
}

.feed-highlight {
  position: relative;
  overflow: hidden;
}

.feed-highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  pointer-events: none; 
  z-index: 1; 
}

.feed-highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: white;
}

.carousel-cell {
  width: 80%; /* half-width */
  margin-right: 10px;
}

.section-title {
  font-size: 1.8rem; /* Zmniejszony rozmiar */
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Pasek pod tytułem */
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: inline-block;
}
