/* dla wszystkich elementów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* czcionka zewnętrzna */
@font-face {
  font-family: 'Boncei Trial';
  src: url('Boncei Trial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* 100% wysokości dla strony + czcionka */
body, html {
  height: 100%;
  font-family: 'Boncei Trial', sans-serif;
}
/* tło */
.bg {
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}
/* napis h1, formatowanie tekstu */
.logo {
  color: white;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.726);
  font-size: 30px;
}
/* pasek nawigacji, umiejscowienie u góry, flexbox, justify-content dla elementów po lewo i prawo*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(112, 112, 112, 0.196);
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 10px 11px rgba(227, 227, 227, 0.116);
  z-index: 1000;
}
/* lista nawigacji */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
/* linki nawigacji */
.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}
/* najechanie na link */
.nav-links a:hover {
  color: #FFD700;
  transform: scale(1.05);
}
/* aktywacja linku */
.nav-links a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}
/* głowny panel recenzji */
.main {
  padding-top: 50px;
}
/* zdjęcie filmu */
.film {
  width: 500px;
  border: 2px solid black;
  border-radius: 20px;
}
/* recenzje */
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}
/* linie oddzielające */
hr {
  border: 1px solid black;
  width: 80%;
  margin: auto;
}
/* paragrafy recenzji */
.rec {
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
}
/* tytuły */
.rec-title {
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.967);
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1px;
}
/* przeniesienie panelu recenzji */
.content-wrapper {
  display: flex;
  gap: 40px;
  padding-top: 140px; 
  max-width: 1200px;
  margin: 0 auto;
}
/* panel recenzji i losowy film*/
section {
  flex: 5; 
}
/* losowy film */
.sidebar {
  position: sticky;
  top: 300px;
  width: 300px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}
/* napis Losowy Film*/
.sidebar h2 {
  font-family: 'Boncei Trial', sans-serif;
  color: #222;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}
/* Przycisk losowania */
#random-movie-btn {
  padding: 12px 24px;
  background-color: #FFD700;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 100%;
  max-width: 250px;
}
/* najechanie na przycisk */
#random-movie-btn:hover {
  background-color: #e6c200;
}
/* losowy film, zaokrąglenie */
#los_film{
    border-radius: 20px;
}
/* stopka - formatowanie */
footer {
  text-align: center;
  padding: 15px;
  background-color: #1f1f1f;
  color: #aaa;
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
}