@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  /* Base */
  --studio-black: #1C1E21;
  --warm-graphite: #2A2D31;

  /* Text */
  --off-white: #EDEDED;
  --muted-grey: #9A9FA6;
  --soft-line-grey: #3A3D42;

  /* Accent */
  --amber: #E0A11B;
  --amber-dark: #B88214;

  /* Optional institutional */
  --deep-teal: #0F4C5C;
  --muted-teal: #3E6F7A;
}
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--muted-grey);
  background-color: var(--studio-black);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
a,
.main-color {
  color: var(--amber);
}

a:hover,
a:focus {
  color: var(--amber-dark);
}

::selection {
  background: var(--amber);
  color: #000;
}
.bg-dark {
  background-color: var(--studio-black);
}

.bg-grey {
  background-color: var(--warm-graphite);
  border-color: var(--soft-line-grey);
}

.section {
  background-color: transparent;
}
#nav {
  background: var(--studio-black);
  border-bottom: 1px solid var(--soft-line-grey);
}

#nav.fixed-nav {
  background: var(--studio-black) !important;
}

.main-nav > li > a {
  color: var(--off-white);
  font-weight: 500;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--amber);
}

.main-nav > li > a:after {
  background-color: var(--amber);
}
.bg-img .overlay {
  background: linear-gradient(
    90deg,
    rgba(28,30,33,0.83) 0%,
    rgba(28,30,33,0.68) 45%,
    rgba(28,30,33,0.52) 100%
  );
}
/* wersja RADIO – mocniejsza */
.bg-img .overlay.is-radio {
  background: linear-gradient(
    90deg,
    rgba(28,30,33,0.90) 0%,
    rgba(28,30,33,0.75) 45%,
    rgba(28,30,33,0.60) 100%
  );
}
@media (max-width: 767px) {
  .bg-img .overlay {
    background: rgba(28,30,33,0.8);
  }
}


.home-content h1 {
  color: var(--off-white);
  letter-spacing: -0.03em;
}

.home-content p {
  color: var(--muted-grey);
}
.about,
.service {
  background: transparent;
  border: 1px solid var(--soft-line-grey);
}

.about i,
.service i {
  color: var(--amber);
}

.about:after,
.service:after {
  background-color: var(--warm-graphite);
}

.about:hover h3,
.service:hover h3 {
  color: var(--off-white);
}
.work .overlay {
  background: var(--studio-black);
}

.work .work-content span {
  color: var(--amber);
}

.work .work-link a {
  background-color: var(--amber);
}

.work .work-link a:hover {
  background-color: var(--amber-dark);
}
.pricing {
  background: transparent;
  border: 1px solid var(--soft-line-grey);
}

.pricing::after {
  background-color: var(--warm-graphite);
}

.pricing .price {
  border-color: var(--amber);
}

.pricing .price h3 {
  color: var(--off-white);
}

.pricing .duration {
  color: var(--muted-grey);
}

.pricing:hover .price-title {
  color: var(--amber);
}
.main-btn {
  background: var(--amber);
  color: #000;
  font-weight: 600;
}

.main-btn:hover {
  background: var(--amber-dark);
  color: #000;
}

.outline-btn {
  border-color: var(--amber);
  color: var(--amber) !important;
}

.outline-btn:hover {
  background: var(--amber);
  color: #000 !important;
}
#footer {
  background: var(--studio-black);
  border-top: 1px solid var(--soft-line-grey);
}

.footer-follow li a {
  background-color: var(--warm-graphite);
  color: var(--off-white);
}

.footer-follow li a:hover {
  background-color: var(--amber);
  color: #000;
}
/*------------------------------------*\
	Portfolio
\*------------------------------------*/

.work {
    position: relative;
    padding: 20px;
}

.work .work-content h3 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
    color: var(--amber);
    margin-bottom: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work .work-content span {
    display: block;
    text-transform: uppercase;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
    color: var(--off-white);
    margin-bottom: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work .work-link {
    text-align: center;
    margin-top: 20px;
    opacity: 1;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}


.work:hover .work-link {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}

.pricing-description {
  color: var(--muted-grey);
  font-style: italic;
  font-size: 0.8em;
  margin-bottom: 10px;
}
.about-left {
  text-align: left;
  margin-top: 10px;
}
/* ================================
   Portfolio – RADIO MODE
   ================================ */

.work.in-radio {
    position: relative;
}

/* obrazek zostaje normalny */
.work.in-radio > img {
    display: block;
    width: 100%;
}

/* overlay ZAWSZE widoczny, zero animacji */
.work.in-radio .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        90deg,
        rgba(28,30,33,0.85) 0%,
        rgba(28,30,33,0.70) 50%,
        rgba(28,30,33,0.55) 100%
    );

    opacity: 1;

    /* kasujemy WSZYSTKIE ruchy */
    transition: none;
}

/* content zawsze widoczny */
.work.in-radio .work-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

/* tekst – zero animacji */
.work.in-radio .work-content h3,
.work.in-radio .work-content span,
.work.in-radio .work-link {
    opacity: 1;
    transform: none;
    transition: none;
}

/* kolorystyka – spokojna, radiowa */
.work.in-radio .work-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.work.in-radio .work-content span {
    color: #cfd3dc;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* linki – bez hover-efektów */
.work.in-radio .work-link a {
    background-color: #6195FF;
    color: #FFF;
}

/* hover NIE ROBI NIC */
.work.in-radio:hover .overlay,
.work.in-radio:hover .work-content h3,
.work.in-radio:hover .work-content span,
.work.in-radio:hover .work-link {
    opacity: 1;
    transform: none;
}
/* ================================
   RADIO – portfolio audio cards
   ================================ */

#portfolio .work.in-radio { 
  padding: 15px;
}

/* karta */
#portfolio .work.in-radio .work-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

/* okładka */
#portfolio .work.in-radio .work-cover{
  position: relative;
}

#portfolio .work.in-radio .work-cover > img{
  display:block;
  width:100%;
  height:auto;
}

/* overlay zawsze widoczny, zero animacji */
#portfolio .work.in-radio .work-cover .overlay{
  position:absolute; inset:0;
  opacity:1;
  transition:none;
  background: linear-gradient(
    90deg,
    rgba(28,30,33,0.85) 0%,
    rgba(28,30,33,0.70) 50%,
    rgba(28,30,33,0.55) 100%
  );
}

/* podpis na okładce – przy dole, nie na środku */
#portfolio .work.in-radio .work-content{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
  top:auto;
  transform:none;
  text-align:left;
}

#portfolio .work.in-radio .work-content h3{
  margin:0 0 6px 0;
  font-size: 20px;
  line-height: 1.2;
  color:#fff;
  opacity:1;
  transform:none;
  transition:none;
}

#portfolio .work.in-radio .work-content span{
  display:block;
  color: rgba(255,255,255,0.78);
  text-transform:none;
  letter-spacing:0;
  margin:0;
  opacity:1;
  transform:none;
  transition:none;
}

/* wyłączamy stare hoverowe bajery dla tego trybu */
#portfolio .work.in-radio:hover .overlay,
#portfolio .work.in-radio:hover .work-content h3,
#portfolio .work.in-radio:hover .work-content span{
  opacity:1;
  transform:none;
}

/* tracklista */
#portfolio .work.in-radio .tracklist{
  padding: 14px 14px 16px;
  background: rgba(0,0,0,0.18);
}

/* pojedynczy track */
#portfolio .work.in-radio .track{
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

#portfolio .work.in-radio .track:first-child{
  border-top: 0;
  padding-top: 0;
}

/* meta */
#portfolio .work.in-radio .track-title{
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 2px;
}

#portfolio .work.in-radio .track-sub{
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* player – pełna szerokość, bez skakania */
#portfolio .work.in-radio audio{
  width: 100%;
  display:block;
}

/* opcjonalnie: jeśli przeglądarka robi za duże controls */
#portfolio .work.in-radio audio{ 
  height: 36px; 
}

/* responsywka: na xs daj pełne kolumny */
@media (max-width: 767px){
  #portfolio .work.in-radio{
    padding: 10px;
  }
}
.pricing .price-title.in-radio {
    display: block;
    padding: 40px 0px 20px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
    font-size: large;
}
/* Wrapper centrujący blok list */
.school-features-wrap{
  max-width: 980px;          /* szerokość całego bloku z listą */
  margin: 28px auto 0;       /* wycentrowanie kontenera */
  padding: 0 12px;
}

/* Sama lista */
.feature-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Element listy: większa typografia i oddech */
.feature-list li{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 14px 0;
  font-size: 16px;           /* było ~1rem, tu dajemy czytelniej */
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

/* Ikony: większe i stabilne wyrównanie */
.feature-list i{
  font-size: 20px;           /* większe ikony */
  line-height: 1;
  min-width: 26px;
  margin-top: 2px;
  color: #f5b400;            /* jak Twoje złoto */
}

/* Jeśli chcesz jeszcze większy tekst na desktopie */
@media (min-width: 992px){
  .feature-list li{ font-size: 17px; }
  .feature-list i{ font-size: 22px; min-width: 28px; }
}
.feature-list li{
  transition: transform .12s ease, color .12s ease;
}
.feature-list li:hover{
  transform: translateX(3px);
  color: rgba(255,255,255,.98);
}
#schools {
  padding-bottom: 60px !important;
}
/* HARD RESET dla tego jednego komponentu */
#portfolio .work .work-content{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  padding: 16px !important;
  text-align: center !important;

  transform: none !important;
  opacity: 1 !important;
  pointer-events: none !important; /* żeby klik przechodził na link jeśli coś go zasłania */
}

/* link ma być klikalny mimo pointer-events:none na kontenerze */
#portfolio .work .work-play{
  pointer-events: auto !important;
  display: inline-flex !important;
  width: 44px !important;
  height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--amber, #E0A11B) !important;
  color: #000 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
}

/* reset marginesów i cudów typograficznych */
#portfolio .work .work-content span,
#portfolio .work .work-content h3{
  margin: 0 !important;
  transform: none !important;
  background: #2a2d3164;
}

