/*
	Theme Name: Themebase
	Theme URI: 
	Author:  Veronika Udod
	Author URI: 
	Version: 2.0
	Description: 
	Tags: 
	Licence: GPL v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: ecoffset.it
*/

/* MAIN SETTINGS */

:root {
  --blue: #161f48;
  --white: #ffffff;
  --gold: #d6b35f;
  --lightgold: #fbf9f1;
  --grey: #6e6b60;
  --lightgrey: #dcdee1;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  transition: 0.5s;
  background: var(--lightgold);
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: "Moderat Extended Black";
  src: url("/wp-content/themes/themebase/inc/assets/fonts/ModeratExtendedBlack.woff")
    format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moderat Extended Bold";
  src: url("/wp-content/themes/themebase/inc/assets/fonts/ModeratExtendedBold.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moderat Extended Regular";
  src: url("/wp-content/themes/themebase/inc/assets/fonts/ModeratExtendedRegular.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moderat Regular";
  src: url("/wp-content/themes/themebase/inc/assets/fonts/ModeratRegular.woff")
    format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Moderat Regular";
}

h1 {
  font-size: 60px;
  font-family: "Moderat Extended Bold";
}

h2 {
  font-size: 46px;
  font-family: "Moderat Extended Regular";
}

h3 {
  font-size: 38px;
  font-family: "Moderat Extended Regular";
}

h4 {
  font-size: 30px;
  font-family: "Moderat Extended Bold";
}

h5 {
  font-size: 24px;
  font-family: "Moderat Extended Bold";
}

h6 {
  font-size: 18px;
  font-family: "Moderat Extended Black";
}

p {
  font-size: 18px;
  font-family: "Moderat Regular";
  margin-bottom: 0;
}

button {
  font-size: 15px;
  font-family: "Moderat Extended Bold";
}

.max-w-1360 {
  max-width: 1360px;
  margin: auto;
}

.position-relative {
  position: relative;
}

/* MAIN SETTINGS MOBILE */
@media only screen and (max-width: 768px) {
}

/* NAVBAR */
header {
  position: fixed;
  z-index: 99;
  width: 100%;
}

/* Container generale per header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  gap: 80px;
  max-width: 1360px;
  margin: auto;
}

/* Menu a sinistra */
.nav-left {
  flex: 1;
  text-align: left;
}

/* Menu a destra */
.nav-right {
  flex: 1;
  text-align: right;
}

/* Contenitore del logo, centrato */
.logo-container {
  text-align: center;
  flex: 0 1 auto; /* Impedisce che il logo cresca */
}

/* Immagine del logo */
.logo {
  max-width: 260px; /* Puoi regolare la dimensione del logo */
}

/* Menu principale */
.main-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  margin-bottom: 0;
}

.main-menu li a {
  position: relative;
  text-decoration: none;
  color: var(--lightgold);
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Moderat Extended Bold";
  transition: 0.5s;
  display: inline-block;
}

.main-menu li a:hover {
  color: var(--gold);
  transform: translateY(-5px);
}

/* Modifiche per visualizzazione su dispositivi mobili */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    text-align: center;
  }

  .logo-container {
    margin-bottom: 10px;
  }

  .main-menu {
    flex-direction: column;
    gap: 10px;
  }
}
/* NAVBAR MOBILE */
@media only screen and (max-width: 768px) {
}

/* HOMEPAGE */
#jarallax-container-0 {
  border-radius: 5px;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  background-size: 120%;
  transition: none !important;
}

/*********CONTACT US************/
/*.contact-us-form .form-control {
    padding: 20px;
    border-radius: 0;
	color: var(--white);
	text-transform: uppercase;
 	resize: none;
	background-color: #333333;
	border: 0;
}

.contact-us-form .form-control::placeholder {
	color: var(--grey);
	text-transform: uppercase;
}

.contact-us-form .btn-submit .form-control {
   	background: transparent;
	border: 1px solid var(--green);
	color: var(--white);
}

.contact-us-form p{
	margin-bottom: 24px;
}

.contact-us-form .wpcf7-acceptance input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 14px;
    height: 14px;
    min-height: 14px;
    border: 1px solid var(--white);
    display: inline-block;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-us-form .wpcf7-acceptance span{
    color: var(--grey);
	font-size: 14px;
}

.contact-us-form .wpcf7-acceptance input[type="checkbox"]:checked {
    background-color: var(--white);
}*/

/* FOOTER */
footer {
  padding: 120px 46px;
  background: var(--blue);
}

footer p,
footer a {
  color: var(--lightgold);
  font-size: 18px;
}

footer a {
  text-decoration: none;
  transition: 0.5s;
}

footer a:hover {
  color: var(--gold);
}

.footer-logo {
  max-width: 254px;
}

.footer-first-row {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 28px;
}

.footer-first-row p {
  color: var(--gold);
  font-size: 15px;
  font-family: "Moderat Extended Bold";
}

.footer-second-row {
  padding-top: 16px;
}

/* Footer menus sdoppiati */
.footer-menus {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
}

.footer-menu-left,
.footer-menu-right {
  flex: 1;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-menu li a {
  color: var(--lightgold);
  font-size: 18px;
  text-decoration: none;
  transition: 0.5s;
}

.footer-menu li a:hover {
  color: var(--gold);
}

/* FOOTER MOBILE */
@media only screen and (max-width: 768px) {
  .footer-menus {
    flex-direction: column;
    gap: 20px;
  }
}
