/*
Theme Name: Young Dog
Theme URI: https://youngdog.studio
Author: Young Dog Studio
Author URI: https://youngdog.studio
Description: YD
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.3
License:
License URI:
Text Domain: yd
Tags:
*/

/* CSS Variables - MUST be first */
@import "css/variables/colors.css";
@import "css/variables/spacing.css";
@import "css/variables/typography.css";

/* FONTS */

/* @font-face {
	font-family: 'Founders Grotesk';
	src: url('fonts/FoundersGrotesk-Light.woff2') format('woff2'),
		 url('fonts/FoundersGrotesk-Light.woff') format('woff'),
		 url('fonts/FoundersGrotesk-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Founders Grotesk';
	src: url('fonts/FoundersGrotesk-Regular.woff2') format('woff2'),
		 url('fonts/FoundersGrotesk-Regular.woff') format('woff'),
		 url('fonts/FoundersGrotesk-Regular.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Founders Grotesk';
	src: url('fonts/FoundersGrotesk-Medium.woff2') format('woff2'),
		 url('fonts/FoundersGrotesk-Medium.woff') format('woff'),
		 url('fonts/FoundersGrotesk-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
} */


html, button, input, select, textarea { color: #222; }

body {
	font-size: 1em;
	line-height: 1.4;
}
/* Remove text-shadow in selection highlight. These selection declarations have to be separate. Customize the background color to match your design */
::-moz-selection {
    background: #FFEA00;
    text-shadow: none;
}

::selection {
    background:rgb(0, 0, 0);
	color: #FFF;
    text-shadow: none;
}

/* Remove the gap between images and the bottom of their containers  */
img { vertical-align: middle; }

a {
	text-decoration:none;
	-webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
	cursor: pointer;
}

a, a:active, a:focus {
   outline: none;
}

b, strong {
	font-weight: 500;
}

.noselect {
	-webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.nodrag {
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
}
.nodrag img {
	pointer-events: none;
}

.balance {
	text-wrap: balance;
}

/* Allow only vertical resizing of textareas. */
textarea { resize: vertical; }

/* Corrige o padding para não expandir as caixas */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Screen reader only - acessibilidade */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* 

DEFAULT STYLES


*/

html {
	overscroll-behavior: none;
	overscroll-behavior-y: none;
}

body {
	font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	color: #fff;
	background-color: var(--color-lilac);
	margin: 0;
	padding: 0;
	overscroll-behavior: none;
}

/* FONTS */
.im-fell {
	font-family: 'IM Fell DW Pica', serif;
	font-style: italic;
}

body.no-scroll {
	overflow: hidden;
	height: 100dvh;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.splash {
	width: 100%;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.splash a {
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.splash img {
	width: 80%;
	height:auto;
	max-width:80%;
	max-height: 80%;
}


/*

SECTIONS

*/

section {
	width: 100%;
	position:relative;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Fira Sans', sans-serif;
}

h1 {
	margin:0;
	padding:0;
	font-size: 80px;
	line-height: 80px;
	text-transform: uppercase;
	font-weight: 300;
	color: var(--color-brown);
}

/* TEXTS */

.double-text {
    display: flex;
    gap: var(--spacing-md);
}

.double-text .text {
	width: 50%;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    margin:0;
    padding:0;
    text-wrap: balance;
	text-align: justify;
}

.text-intro {
    margin:0;
    padding:0;
    text-transform: uppercase;
	text-align: justify;
	text-wrap: balance;
	font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
}