/*!
Theme Name: metalurg
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: metalurg
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

metalurg is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

@font-face {
    font-family: 'Nickel Gothic';
    src: url('fonnts.com-Nickel_Gothic_Variable_Regular.otf') format('opentype');
    font-weight: normal; font-style: normal; font-display: swap;
}

body {
    background-color: theme('colors.neutral.bg');
    color: theme('colors.neutral.text');
    font-family: 'Nunito', sans-serif;
}

.font-heading { font-family: 'Nickel Gothic', Impact, sans-serif; }

.gallery-item {
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.5s ease;
}
.gallery-item img {
    transition: transform 0.7s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
}

.text-club-black a {
    display: block;
}

.text-club-black img {
    max-height: 50px;
    width: auto;
}

footer img {
    max-height: 40px;
}

.article-content a {
	text-decoration: underline;
}