/*!
Theme Name: quai-tech theme
Theme URI: http://underscores.me/
Author: alysonm
Author URI: http://underscores.me/
Description: custom theme build for simple websites
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: quai-tech-theme
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.

quai-tech theme 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/
*/

/**
 * Variables
 */
 :root{
   --primary-color: #0B1AAD;
   --secondary-color: #D6D6D6;
   --dark-blue: #081485;
 }

/**
 * HEADER
 */
 #masthead{
    width: 100%;
    margin: 0;
    padding: 20px 50px;
    position: sticky;
    background-color: white;
 }

 #masthead .container{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }

 #masthead .container .main-navigation,
 #masthead .container div{
    width: fit-content;
 }

 #masthead .container .main-navigation a{
    display: block;
    text-decoration: none;
    padding: 5px 0px 0px;
    margin: 2px 15px 5px;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
 }

 #masthead .container .main-navigation a:hover{
   border-bottom: 3px solid var(--primary-color);
   color: var(--primary-color);
 }

 #masthead .container p{
   margin: 0;
 }

 #masthead .site-branding a{
   line-height: 1rem;
 }

 #masthead .site-branding img{
   width: 100%;
   max-width: 250px;
 }

/**
 * HERO
 */
 #hero{
   width: 100%;
   height: 70vh;
   background-image: url('/wp-content/uploads/2026/04/quai1.webp');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
 }

 #hero .container{
   max-width: 1200px;
   margin: auto;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100%;
 }

 #hero .container div{
   max-width: 600px;
   text-align: center;
   color: white;
 }