@charset "iso-8859-9";


/* =========================
   GENERAL
   ========================= */

::selection {
  color: #fff;
  background: #000;
}

.icerik {
  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: 0;
}


/* =========================
   COURSE TITLE
   ========================= */

.course-title {
  margin: 0 0 16px;

  color: #111;

  font-size: 20px;
  font-weight: bold;
}


/* =========================
   LISTS
   ========================= */

.icerik ul,
.icerik ol {
  margin-top: 8px;
  margin-bottom: 16px;

  padding-left: 28px;
}

.icerik li {
  margin: 5px 0;

  font-size: 15px;
  line-height: 1.45;
}

ol > li::marker {
  font-weight: bold;
}


/* =========================
   BLINKING ANNOUNCEMENT
   ========================= */

#blink {
  margin-bottom: 10px;

  color: red;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: bold;
}


/* =========================
   TABLES
   ========================= */

table {
  border-collapse: collapse;

  margin: 10px 0;
}

table,
th,
td {
  border: 1px solid #000;
}

th,
td {
  padding: 6px 8px;

  text-align: center;
  vertical-align: middle;
}


/* =========================
   MOVIE TITLE
   ========================= */

.movie-title {
  margin: 28px 0 12px;

  color: #111;

  font-size: 22px;
  font-weight: bold;

  text-align: left;
}


/* =========================
   MOVIE GALLERY
   ========================= */

.gallery {
  width: 100%;

  display: flex;
  flex-wrap: wrap;

  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;

  margin: 0 0 20px;
  padding: 0;
}

.gallery a {
  display: block;

  margin: 0;
  padding: 0;

  text-decoration: none;
}

.gallery img {
  display: block;

  width: 120px;
  height: 175px;

  margin: 0;
  padding: 0;

  object-fit: cover;
  object-position: center top;

  border: 1px solid #ccc;
  border-radius: 6px;

  cursor: pointer;

  box-sizing: border-box;

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.gallery img:hover {
  transform: scale(1.05);

  box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
}


/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 40px 70px;

  background: rgba(0, 0, 0, .9);

  box-sizing: border-box;

  z-index: 9999;
}

.lightbox.open {
  display: flex;
}


/* =========================
   LIGHTBOX CONTENT
   ========================= */

.lightbox__content {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  width: fit-content;
  height: auto;

  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 80px);

  margin: 0;
  padding: 0;

  box-sizing: border-box;
}


/* =========================
   LIGHTBOX IMAGE
   ========================= */

.lightbox__img {
  display: block;

  width: auto;
  height: auto;

  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 180px);

  margin: 0;
  padding: 0;

  object-fit: contain;
  object-position: center;

  border: 0;
  border-radius: 6px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, .5);
}


/* =========================
   LIGHTBOX CAPTION
   ========================= */

.lightbox__caption {
  display: block;

  width: 100%;

  margin: 8px 0 0;
  padding: 7px 10px;

  background: rgba(255, 255, 255, .95);
  color: #000;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;

  text-align: center;

  border-radius: 4px;

  box-sizing: border-box;
}


/* =========================
   LIGHTBOX CLOSE
   ========================= */

.lightbox__close {
  position: absolute;

  top: 6px;
  right: 8px;

  margin: 0;
  padding: 0;

  border: 0;

  background: transparent;
  color: #fff;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;

  text-shadow: 0 1px 4px rgba(0, 0, 0, .8);

  z-index: 2;
}


/* =========================
   LIGHTBOX PREVIOUS / NEXT
   ========================= */

.lightbox__prev,
.lightbox__next {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  margin: 0;
  padding: 0;

  border: 0;

  background: transparent;
  color: #fff;

  font-size: 54px;
  line-height: 1;

  cursor: pointer;

  z-index: 10000;
}

.lightbox__prev {
  left: 25px;
}

.lightbox__next {
  right: 25px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  color: #b31b1b;
}

.lightbox__close:focus,
.lightbox__prev:focus,
.lightbox__next:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}


/* =========================
   SMALL SCREENS
   ========================= */

@media (max-width: 480px) {

  .gallery img {
    width: 105px;
    height: 155px;
  }

  .lightbox__caption {
    font-size: 14px;
  }
}