/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: 'Super Chiby';
  src: url('fonts/SuperChiby-BL62V.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url("images/pattern.png");
  background-color: #B3D1ED;
  background-repeat: repeat;
  color: #F8395A;
  font-family: Comfortaa, sans-serif;
  margin: 0;
  cursor: url("images/Windows-11-Pink.png"), pointer;
}

.container {
  width: 1200px;
  margin: 30px auto;
}

/* HEADER */
.header {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 6px 0px #8A1E4A;
  transition: 0.2s ease;
}

.header:hover {
  transform: translateY(-3px);
}

.banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

/* NAVBAR */
.navbar {
  background-color: #d7e8f7;
  border-radius: 20px;
  box-shadow: 6px 6px 0px #8A1E4A;
  padding: 15px 20px;
  margin-bottom: 20px;
  text-align: center;
  transition: 0.2s ease;
}

.navbar:hover {
  transform: translateY(-3px);
}

.navbar a {
  font-family: 'Super Chiby', cursive;
  color: #F8395A;
  text-decoration: none;
  font-size: 26px;
  margin: 0 15px;
  text-shadow: 2px 2px 0px #8A1E4A;
  transition: 0.2s ease;
  display: inline-block;
}

.navbar a:hover {
  color: #C12868;
  transform: translateY(-3px) scale(1.05);
}

/* COLUMNS */
.columns {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sidebar-left {
  width: 250px;
}

.main-content {
  flex: 1;
}

.sidebar-right {
  width: 250px;
}

/* BOXES */
.box {
  background-color: #d7e8f7;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0px #8A1E4A;
  transition: 0.2s ease;
  text-align: center;
}

.box:hover {
  transform: translateY(-3px);
}

/* FOOTER */
.footer {
  background-color: #F8395A;
  color: #B3D1ED;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  box-shadow: 6px 6px 0px #8A1E4A;
  transition: 0.2s ease;
}

.footer:hover {
  transform: translateY(-3px);
}

.footer-text {
  margin: 0 0 8px 0;
}

/* DIVIDER */
.divider-text {
  text-align: center;
  margin: 25px 0;
  font-size: 24px;
  color: #F8395A;
  text-shadow: 2px 2px 0px #8A1E4A;
}

/* ABOUT IMAGE */
.about-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* LINKS */
a {
  color: #8A1E4A;
  transition: 0.2s ease;
}

a:hover {
  color: #C12868;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
}

/* BLOG IMG */
.blog-img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 15px auto;
  display: block;
}

/* IFRAME */
iframe {
  width: 100%;
  border: none;
  border-radius: 15px;
  display: block;
  margin: 0;
}

/* LISTS */
ul {
  padding-left: 20px;
  list-style-position: inside;
}

/* TITLES */
h1, h2 {
  font-family: 'Super Chiby', cursive;
  color: #F8395A;
  margin-top: 0;
  text-shadow: 2px 2px 0px #8A1E4A;
}

/* TEXT RESET */
p, li, ul {
  margin-top: 0;
}

/* BLINKIES */
.blinkies a {
  display: block;
  margin-bottom: 8px;
}

/* SCROLL */
.blog-gallery-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 15px;
}

/* SCROLLBAR */
.blog-gallery-scroll::-webkit-scrollbar {
  width: 10px;
}

.blog-gallery-scroll::-webkit-scrollbar-track {
  background: #d7e8f7;
  border-radius: 10px;
}

.blog-gallery-scroll::-webkit-scrollbar-thumb {
  background: #F8395A;
  border-radius: 10px;
  border: 2px solid #d7e8f7;
}

.blog-gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #C12868;
}

/* TABLET / MOBILE */
@media (max-width: 768px) {
  .container {
    width: auto;
    margin: 15px;
  }

  .columns {
    display: block;
  }

  .sidebar-left,
  .main-content,
  .sidebar-right {
    width: 100%;
  }

  .navbar {
    padding: 12px;
  }

  .navbar a {
    display: inline-block;
    margin: 6px 8px;
    font-size: 22px;
  }

  .box {
    padding: 15px;
  }

  .banner {
    max-height: none;
  }

  iframe {
    height: 220px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .navbar a {
    display: block;
    margin: 8px 0;
    font-size: 20px;
  }

  .box {
    padding: 12px;
  }

  .divider-text {
    font-size: 20px;
  }

  h1, h2 {
    font-size: 28px;
  }

  body {
    cursor: auto;
  }
}