/*
  Copyright © 2025-2026 ronscf.
  
  This file is part of RONSCF SITE.
 
  RONSCF SITE is free software: you can redistribute it and/or modify it under the terms of 
  the GNU General Public License as published by the Free Software Foundation, 
  either version 3 of the License, or (at your option) any later version.
 
  RONSCF SITE is distributed in the hope that it will be useful, but WITHOUT ANY 
  WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 
  You should have received a copy of the GNU General Public License along with 
  RONSCF SITE. If not, see <https://www.gnu.org/licenses/>. 
*/

:root {
    --bgcolor: #121212;
    --fontcolor: #b8c1c1;
    --linkcolor: #b8c3c8;
    --linkhovercolor: #9b897d;
}

*, html {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'AlteixSans';
    src: url('/assets/font/AlteixsansRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: 'AlteixsansRegular.otf', sans-serif;
    width: 100%;
    background-color: var(--bgcolor);
}

header {
    text-align: center;
}

header h1 {
    color: var(--fontcolor);
}

nav {
    text-align: center;
    margin: 1em;
}

nav a {
    text-decoration: none;
    color: var(--linkcolor);
}

nav a:hover {
    color: var(--linkhovercolor);
}

main {
    padding: 1em;
    max-width: 700px;
    margin: 20px auto;
}

main .img-ron {
    float: left;
    width: 64px;
    height: auto;
    margin-right: 15px;
    border-radius: 10px;
}

main p {
    color: var(--fontcolor);
}

section {
    margin: 1em 0;
    text-align: right;
}

section a {
    text-decoration: none;
    color: var(--linkcolor);
}

section a:hover {
    color: var(--linkhovercolor);
}

.social-icon {
    width: 24px;
    height: auto;
    fill: var(--linkcolor);
}

.social-icon:hover {
    fill: var(--linkhovercolor);
}

article {
    
}

article h2 {
    color: var(--fontcolor);
    font-weight: 400;
}

article h5 {
    margin: 1em 0;
    color: var(--fontcolor);
    font-weight: 200;
}

article p {
    color: var(--fontcolor);
    margin: 10px 0px;
}

article ul {
    
}

article ul li {
    list-style: none;
}

article ul li a {
    text-decoration: none;
    color: var(--linkcolor);
}

article ul li a:hover {
    color: var(--linkhovercolor);
}

article a {
	text-decoration: none;
	color: var(--linkhovercolor);
}

article a:hover {
	color: var(--linkcolor);
}

.album {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; 
}

.album img {
  width: 100%;
  height: auto; 
  object-fit: cover; 
  border-radius: 8px; 
}

.img-post,
.not-found {
	width: 100%;
	height: auto; 
	object-fit: cover; 
	border-radius: 8px;
}

hr {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2.5em 0;
}

footer {
	text-align: center;
	margin: 1em 0;
}

footer p {
    color: var(--fontcolor);
}
