/**
 * Theme Name: Royal Link
 * Theme URI: https://royallink.ng
 * Description: A custom theme for the Royal Link Website.
 * Version: 1.0.0
 * Author: Prince Abdulrahman Obaje
 * Author URI: https://obajesoft.com.ng/prince_abdulrahman_obaje
 * Tags: blog, one-column
 * Text Domain: royak-link-ng
 */

 * {
  box-sizing: border-box;
}

body{
  padding: 0;
  margin: 0;
  color: var(--primaryForeColor);
}

:root {
    --numDays: 5;
    --numHours: 10;
    --timeHeight: 60px;
    --calBgColor: #fff1f8;
    --primaryForeColor: #ffc180;
    --primaryBackgroundColor: #331a00;
    --SecondaryBackgroundColor: #502a01;
}

@font-face {
  font-family: "oswald-bold";
  src: url('assets/fonts/Oswald/static/Oswald-Bold.ttf');
}

@font-face {
  font-family: "oswald-light";
  src: url('assets/fonts/Oswald/static/Oswald-Light.ttf');
}

@font-face {
  font-family: "roboto-light";
  src: url('assets/fonts/Roboto/static/Roboto-Light.ttf');
}

@font-face {
  font-family: "roboto";
  src: url('assets/fonts/Roboto/static/Roboto');
}

@font-face {
  font-family: "pt-sans-naroow";
  src: url('assets/fonts/PT_Sans_Narrow/PTSansNarrow-Bold.ttf');
}

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

main{
    display: block;
}

.site-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: var(--primaryBackgroundColor);
  padding: 14px 24px;
}

.site-branding img{
  width: 150px;
}

.main-navigation a{
  color: var(--primaryForeColor);
  font-family: "pt-sans-naroow";
  font-size: 16px;
}

.main-navigation a:hover{
  color: var(--SecondaryBackgroundColor);  
  background-color: var(--primaryForeColor);
}

/* .site-branding{
  width: 200px;
}

.main-navigation{
  width: 800px;
} */

.heroe-opening{
  height: 450px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-image: url('assets/images/nice-meet-you-two-young-600nw-2479518729.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 24px;
  
}

.heroe-opening-heading{
  width: 40%;
  padding: 18px;
  color: var(--primaryForeColor);
}

.heroe-opening h2{
  font-family: 'oswald-bold';
  color: var(--primaryForeColor);
  font-size: 38px;
  text-align: left;
}

.heroe-opening p{
  font-family: 'oswald-light';
  font-size: 26px;
}

li{
    list-style-type: none;
    list-style-position: outside;
}

 .footer-wrapper{
    background-color: var(--primaryBackgroundColor);
    color: var(--primaryForeColor);
    font-size: 12px;
 }

 .footer-quicklink {
  display: flex;
  flex-direction: row;
  padding: 18px;
}

.quicklink-section {
  font-family: 'roboto';
  padding: 10px;
  font-size: 16px;
  text-align: left;
  width: 100%;
}

.quicklink-section span{
  font-size: large;
  font-weight: 400;
}

.quicklink-section  a{
  color: var(--primaryForeColor);
}

.site-info{
  display: flex;
  flex-direction: row;
  background-color: var(--SecondaryBackgroundColor);
  padding: 16px 14px;
}

/* .social{
  display: flex;
  flex-direction: row;
  align-content: space-evenly;
} */

/* Make a one column-layout instead of three-column layout */
@media (max-width: 600px) {
  .heroe-opening-heading{
    width: 100%;
  }

  .footer-quicklink {
    flex-direction: column;
  }
}