/*
Theme Name: parlatta
Theme URI: http://parlatta.com
Version: 0.1
Author: tinisi
Author URI: http://parlatta.com/
Description: A Minimal Wordpress Theme.
Tags: minimal, simple, responsive, light-weight
Text Domain: parlatta
*/

/* ........................................
  Imports & Root
  ........................................... */

  @import url("https://use.typekit.net/bzl6ofl.css");

  :root {
    /* colors */
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #000000;
    --text-color: #000000;
    --link-color: #000000;
    /* text */
    --font-family-base: sans-serif;
    --font-family-heading: serif;
    --font-size-base: max(0.85vw, 1rem);
    --font-size-heading-1: max(8vw, 4rem);
    --font-size-heading-2: max(4.1vw, 2.75rem);
    --font-size-heading-3: max(3.6vw, 2rem);
    --font-size-subtitle: max(1.5vw, 1.125rem);
    --line-height-base: 1.5;
    --line-height-heading: 1.2;
    /* spacing system */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    /* border */
    --border-width: 1px;
    --border-color: #ccc;
    --border-radius: 16px;
    /* animations */
    --base-transition: all 0.3s ease;
  }

/* ........................................
  CSS Reset
  ........................................... */

  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    list-style: none;
    line-height: 1;
  }

  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
  }

  body {
    line-height: 1;
  }

  ol, ul {
    list-style: none;
  }

  blockquote, q {
    quotes: none;
  }

  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

/* ........................................
  Layout Elements
  ........................................... */

  /* wrapper to be used on any element */
  .wrapper {
    overflow-x: hidden;
    padding: 0 max(6.25vw, 16px);
  }

/* ........................................
  Typography
  ........................................... */

  * {
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
  }

  h1, 
  h2, 
  h3, 
  h4, 
  h5, 
  h6 {
    font-family: var(--font-family-heading);
    line-height: var(--line-height-heading);
  }

  p {
    font-size: var(--font-size-base);
  }

  h1 {
    /*font-size: 3.05rem; */
    font-size: var(--font-size-heading-1);
  }
  h2 {
    font-size: var(--font-size-heading-2);
  }
  h3 {
    font-size: var(--font-size-heading-3);
  }

  .subtitle {
    font-size: var(--font-size-subtitle);
  }

  a {
    font-size: var(--font-size-base);
    color: var(--link-color);
    text-decoration: none;
  }

/* ........................................
  Header & Navigation
  ........................................... */

  header {

  }

  nav {

  }

/* ........................................
  Footer
  ........................................... */

  footer {

  }

/* ........................................
  Repeating Assets
  ........................................... */
  
  /* Forms */

  /* Buttons */

/* ........................................
  Sections
  ........................................... */

  /* Hero Section */
  .hero-section {
    
  }

/* ........................................
  Misc
  ........................................... */

  /* default loading animation */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1A1F3D;
    z-index: 9999;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
  }

  /* remove dev bar at the top */
  #wpadminbar {
    display: none;
  }