/*----------------------------------------------------*/
/**BASIC SETTINGS**/
/*----------------------------------------------------*/

:root {
  --yellow:               #EAAF0F; 
  --text-color:           #2B2A29;
  --light-grey:           #715D55;
  --background-color:     #FFFFFF; /* white*/
  --font-size-regular:    clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  --line-height-regular:  calc(var(--font-size-regular) * 1.5);
  --header-height:        2rem;
  --footer-height:        2rem; 
  --hero-height:          calc(100vh - var(--header-height) - var(--footer-height)); 
} 

/* HEADER FOOTER breakpoint asztalra */
@media (min-width: 768px) {
  :root {
    --header-height: 4rem; /* 78px */
    --footer-height: 4rem; /* 78px */
  }
}

/* NORMALIZE RESET */
* {
  margin:     0;
  padding:    0;
  box-sizing: border-box;
}

html, body {
  width:      100%;
  overflow-x: hidden;
}

body {
  background-color: var(--background-color);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align:  left;
  font-size:   var(--font-size-regular);
  line-height: var(--line-height-regular);
  color:       var(--text-color);
}

a {
  text-decoration: none;
}

.hide-on-mobile {
  display: none;
}

/*----------------------------------------------------*/
/**LAYOUT**/
/*----------------------------------------------------*/
.container {
  width:          90%;
  margin-top:     var(--header-height);
  margin-bottom:  var(--footer-height);
  display:        flex;
  flex-flow:      column nowrap;
  margin-left:    auto;
  margin-right:   auto;
}

.section-1 {
  display:         flex;
  flex-flow:       column nowrap;
  justify-content: center;
  align-items:     center;
}

.hero {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display:   flex;
  flex-flow: column nowrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  
}

.hero-buttons {
  display: flex;
  flex-flow: column nowrap;
  margin-top: 2rem;
  margin-bottom: var(--footer-height);
  width: 63%;
  gap: 1rem;
}

.details {
  margin-top: 2rem;
  margin-bottom: auto;
  /*min-height: calc(100vh - var(--header-height) - var(--footer-height) - 4rem);*/
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - 10rem);
  
  width: 80%;
  display: flex;
  flex-flow: column nowrap;
  padding: 2rem 0;
  gap: var(--line-height-regular);
}

.section-2 {
  display:         flex;
  flex-flow:       column nowrap;
  justify-content: center;
  align-items:     center;
  margin-left:     auto;
  margin-right:    auto;
  gap:             1.5rem;
  margin-bottom:   calc(var(--footer-height) + 2rem);
}

/*Impresszum*/

.impresszum-container {
  display:   flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width:     clamp(290px, 70vw, 600px);
  margin-top: calc(var(--header-height) + 2rem);
  margin-bottom: calc(var(--footer-height) + 2rem);
  margin-left: auto;
  margin-right: auto;
  gap: var(--line-height-regular);
  
}

  .impresszum-content {
    margin-bottom: 3rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  


/* DESKTOP LAYOUT */
@media (min-width: 768px) {
  .hide-on-mobile {
    display: block;
  }
  .hide-on-desktop {
    display: none;
  }

  .container {
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 0;
    width: 90%;
    max-width: 1230px;
    margin-top: calc(var(--header-height) + 5vh);
    /*margin-bottom: var(--footer-height);*/
   
    
    
  }

  .hero, .details {
    min-height: unset;
  }

  .details {
    margin-top: unset;
    max-width: 600px;
   
    
  }

  .section-1, .section-2 {
    flex: 1;
    margin-top: 2rem;
    
  }

  

  /*Impresszum*/
  .impresszum-content {
    width: 60%;
  }



  

  
}

/*----------------------------------------------------*/
/**COMPONENTS**/
/*----------------------------------------------------*/
.logo {
  display: block;
  margin-top: var(--header-height);
  width: 65%;
  max-width: 400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .logo {
    margin-top: unset;
  }
}

.hero-text-container {
  width: 65%;
}

.hero-text-container > :first-child {
  font-weight: 600;
}




.banner {
  background-image: url('img/sarga csik.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  width:          100%;
  height:         var(--header-height);
  position:       fixed;
  top:            0;
  left:           0;
  z-index:        10;
  
}

footer {
  width:          100%;
  height:         var(--footer-height);
  position:       fixed;
  bottom:         0;
  left:           0;
  z-index:        10; 
  display:        flex;
  flex-flow:      row nowrap;
  justify-content: center;
  align-items:     center;
  color:          var(--light-grey);
}

.footer-link {
  color: var(--light-grey);
  text-decoration: none;
}

  .footer-link:hover {
    text-decoration: underline;
  }
  

.button {
  display:        inline-block;
  width:          12.56rem;
  border:         0.125rem solid;
  border-radius:  25px;
  opacity:        1;
  padding:        .5rem;
  text-align:     center;
  text-transform: uppercase;
  align-self:     center;
}

@media (min-width: 768px) {
  .button {
    width: 13.625rem;
  }
  .button-primary:hover {
    background:   var(--background-color);
    color:        var(--yellow);
    border-color: var(--yellow);
    cursor:       pointer;
  }
  .button-secondary:hover {
    background:   var(--text-color);
    color:        var(--background-color);
    border-color: var(--text-color);
    cursor:       pointer;
  }
}

.button-primary {
  background:   var(--yellow);
  border-color: var(--yellow);
  color:        var(--background-color);
}

  

.button-secondary {
  color:        var(--text-color);
  border-color: var(--text-color);  
  background:   transparent;
}

  



.kemence {
  max-width:   43vw;
 /* max-width: 614.7px;*/
 max-width: clamp(300px, 43vw, 70%);
  max-height: 40vh;
  margin-bottom: 1rem;
}

.szlogen {
  margin-bottom: 2rem;
  max-width: clamp(300px, 43vw, 60%);
  

}

.kemence, .szlogen {
  
  height:      auto;
  margin-left: auto;
  margin-right: auto;
}

/* Impresszum*/

.impresszum-container h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.impresszum-content h2 {
  margin-bottom: 2rem;
}

.text__bold {
  font-weight: 600;
  
}




