/*
Theme Name: Klub Go
Theme URI:
Author: Kamilos
Author URI:
Description: Custom theme for klubgo.pl
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: Kamilos
License URI:
Text Domain: klubgo
Tags: custom
*/

@font-face {
    font-family: 'KolkerBrush';
    src: url('./assets/fonts/KolkerBrush-Regular.woff2') format('woff2');
}

body {   
    background-image: linear-gradient(to bottom right, #eccf79, #f5e7bc);    
    background-repeat: no-repeat;
    min-height: 100vh;
    font-size: 18px;
    font-family: "Segoe UI";
}

h1 {
    font-family: KolkerBrush;
    font-size: 130px;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 30px;
    color:  black;
    
    @media(max-width: 768px) {
        font-size: 90px;
    }
    @media(max-width: 450px) {
        font-size: 70px;
    }
}

a {
    color: darkred;
    text-decoration: none;
}

main {
    padding: 15px;
}

.footer-copy {
    font-size: 11px;
}

.left-menu-container {
    border-right: 1px solid darkkhaki;
    min-height: 500px;
    
    @media(max-width: 768px) {
        min-height: unset;
        border: 0;
        border-bottom: 1px solid darkkhaki;
    }
}

.left-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    padding: 15px;
    font-size: 20px;
    
    @media(max-width: 768px) {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        text-align: left;
        gap: 10px;
    }
}

.left-menu a:hover {
    color: red;
}

.left-menu a {
    text-decoration: none;
    position: relative;
    padding-left: 28px;
    
    @media(max-width: 768px) {
        padding-left: unset;
        margin-right: 5px;
    }
}

.left-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 20px;
  height: 20px;
  background-image: url("assets/images/menu_stone.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
  
  @media(max-width: 768px) {
      display: none;
  }
}

.left-menu a:hover {
    color: black;
}

.left-menu a:hover::before {
  opacity: 1;
}

.footer {
    margin-bottom: 10px;
}

.post-title a {
    text-decoration: none;
}

.download-game a {
    text-decoration: none;
}

table.results td{
    border: 1px solid darkolivegreen;
    padding: 10px;
    text-align: center;
}

table.results.rengo td{
    border: 1px solid darkred;
}

.entry-content {
    margin-top: 20px;
}