/*
Theme Name: Molo Hotels
Author: Infinite Eye
Author URI: https://www.infinite-eye.com
Description: A custom theme for the Molo Hotels website
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*=======================================
              Import Fonts
========================================*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');
/*=======================================
      Reset Styles for Main Elements
========================================*/

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%;
  font: inherit;
  vertical-align: baseline;
}

/*=======================================
              Box Sizing
========================================*/

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*=======================================
          Default Body Styles
========================================*/

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  font-family: Century Gothic, sans-serif;
}

/*=======================================
   Set Display Role for Older Browsers
========================================*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*=======================================
                Titles
========================================*/

h1.title {
  font-size: 50px;
  color: #4472c4;
  font-weight: bold;
}

/*=======================================
                Quotes
========================================*/

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*=======================================
            Container Layout
========================================*/

.container {
  width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 1440px) {
  .container {
    width: 100%;
  }
}

/*=======================================
              Helper Classes
========================================*/

.clearfix {
  clear: both;
}

.centered {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.alignright {
  float: right;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
}

/*=======================================
          Link Default Styles
========================================*/

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/*=======================================
          Button Default Styles
========================================*/

.button {
}

.button:hover {
}

/*=======================================
            List Default Styles
========================================*/

ul[class],
ol[class] {
  list-style: none;
}

ul {
}

ol {
}

/*=======================================
            Table Default Styles
========================================*/

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
}

table td {
}

/*=======================================
              Form Elements
========================================*/

input,
button,
textarea,
select {
  font: inherit;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  display: inline-block;
  padding: 6px 10px;
  margin: 5px 0;
  outline: none;
}

label {
  cursor: pointer;
}

/*=======================================
          Image Default Styles
========================================*/

img {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
                Top Menu
========================================*/

header {
  background-color: rgba(255, 255, 255, 1);
  padding: 30px;
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 5;
  width: 100%;
  border-bottom: 1px solid #4472c4;
  transition: 0.3s all ease-in-out;
}

.admin-bar header {
  top: 32px;
}

header#scroll {
  padding: 10px 30px;
  height: 80px;
  transition: 0.3s all ease-in-out;
}

.page-content {
  margin-top: 120px;
}

header .menu {
  text-align: center;
}

header .menu li {
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
}

header .menu li a {
  color: #333333;
  text-decoration: none;
}

header .menu li.current-menu-item a {
  color: #4472c4;
}

header .menu li a:hover {
  color: #4472c4;
}

header .menu li#logo {
  margin: 0 40px;
  width: auto;
}

header .menu li#logo img {
  width: 100%;
  height: auto;
}

header .menu li#our-portfolio,
header .menu li#meet-the-team {
  width: 150px;
}

header .menu li#homepage,
header .menu li#contact {
  width: 80px;
}

header .menu li#contact {
  padding-left: 25px;
}

/* Menu Button */

.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  background-color: transparent;
  color: inherit;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.btn-menu:focus {
  outline: none;
}
.btn-menu__text {
  margin-left: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.btn-menu__bars {
  display: block;
  position: relative;
  width: 40px;
  height: 4px;
  background-color: #4472c4;
  transition: 0.3s;
}

.btn-menu__bars:before,
.btn-menu__bars:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4472c4;
  transition: 0.3s;
}

.btn-menu__bars:before {
  transform: translate(0, -12px);
}

.btn-menu__bars:after {
  transform: translate(0, 12px);
}

.menu-open .btn-menu .btn-menu__bars {
  background-color: transparent;
}

.menu-open .btn-menu .btn-menu__bars:before {
  transform: rotate(45deg);
}

.menu-open .btn-menu .btn-menu__bars:after {
  transform: rotate(-45deg);
}

header .mobile-logo,
header .mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  header {
    padding: 30px;
  }

  header .mobile-logo,
  header .mobile-menu {
    display: block;
  }

  header .mobile-menu {
    float: right;
    margin-top: 12px;
  }

  header .mobile-logo {
    float: left;
    width: 300px;
    height: auto;
    position: relative;
  }

  header .mobile-logo a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  header .menu-header-menu-container {
    display: none;
  }

  .menu-header-menu-container {
    position: fixed;
    background-color: white;
    width: 100%;
    top: 119px;
    left: 0;
    padding: 15px 30px 30px 30px;
    z-index: 5;
    border-bottom: 1px solid #4472c4;
  }

  .admin-bar .menu-header-menu-container {
    top: 151px;
  }

  #scroll .menu-header-menu-container {
    top: 79px;
  }

  .menu-header-menu-container #logo {
    display: none;
  }

  .menu-header-menu-container li {
    width: auto !important;
    padding: 0 !important;
    margin: 20px 10px;
  }
}

@media (max-width: 600px) {
  header .menu-header-menu-container .menu li {
    display: block;
  }
}

@media (max-width: 450px) {
  header {
    height: 93px;
  }

  header#scroll {
    height: 60px;
  }

  #scroll .menu-header-menu-container {
    top: 59px;
  }

  .page-content {
    margin-top: 93px;
  }

  header .mobile-logo {
    width: 180px;
  }

  header .mobile-menu {
    margin-top: 5px;
  }

  .menu-header-menu-container {
    top: 92px;
  }
}

/*=======================================
                Footer
========================================*/

footer {
  background-color: #4472c4;
  overflow: hidden;
}

footer .logo-container {
  text-align: center;
  overflow: hidden;
}

footer .logo-container img {
  width: 320px;
  height: auto;
  margin: 100px auto 50px auto;
}

footer .footer-menu {
  text-align: center;
  overflow: hidden;
  margin-bottom: 100px;
}

footer .footer-menu ul li {
  display: inline-block;
  margin: 0 20px;
}

footer .footer-menu ul li a {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

footer .footer-bottom {
  padding: 15px 0 30px 0;
  margin: 0 30px;
  border-top: 1px solid white;
  overflow: hidden;
  color: white;
}

footer .footer-bottom a {
  color: white;
}

footer .footer-bottom .left {
  float: left;
}

footer .footer-bottom .right {
  float: right;
}

@media (max-width: 600px) {
  footer .footer-bottom .left,
  footer .footer-bottom .right {
    float: none;
    text-align: center;
  }

  footer .footer-bottom .left {
    margin-bottom: 15px;
  }

  footer .footer-menu {
    margin-bottom: 50px;
  }

  footer .footer-menu ul li {
    display: block;
    margin-bottom: 15px;
  }
}

@media (max-width: 450px) {
  footer .logo-container img {
    width: 250px;
  }
}

/*=======================================
            Admin Bar Stuff
========================================*/

@media (max-width: 782px) {
  .admin-bar .page-content {
    margin-top: 105px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

@media (max-width: 450px) {
  .admin-bar .page-content {
    margin-top: 79px;
  }

  .admin-bar .menu-header-menu-container {
    top: 124px;
  }
}

/*=======================================
              Basic Page
========================================*/

.page-content.basic-page {
  padding: 50px 0;
}
