@import url('https://fonts.googleapis.com/css?family=PT+Sans');

/* CSS Variables */
:root {
  --primary-color: #b90415;
  --primary-color-hover: #d3071b;
  --secondary-color: #103063;
  --secondary-color-hover: #143f85;
  --light-color: #f4f4f4;
}

body {
  font-family: 'PT Sans', sans-serif;
  background-color: #252529;
  margin: 0;
  color: #fff;
  line-height: 1.6;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: white;
}

/* Section */
.section {
  padding: 2rem 0;
}

.section-head {
  font-size: 2.5rem;
  margin: 0;
}

.section h3 {
  font-size: 2rem;
}

section#entertainment {
  background: url(../img/rollup-1.jpg) no-repeat bottom/cover;
  padding: 10rem 0;
}

.gift-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

/* Showcase */
#showcase {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-y: hidden;
}

#showcase .container {
  margin-top: 25vh;
}

#showcase h1 {
  font-size: 4rem;
  margin-bottom: 0;
}

#showcase h2 {
  font-size: 2rem;
}
footer{
    background: rgb(40, 85, 138);
    color: white;
    padding-bottom: 60px;
}
footer section ul{
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
footer section ul li{
    margin: 8px auto;
    font-size: 14px;
}
form input[type="text"], textarea, select{
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    padding: 12px 10px;
    padding-top: 13px;
    color: white;
}
form input[type="submit"]{
  border: 1px solid white;
  padding: 8px 22px;
  font-size: 16px;
  background: transparent;
  display: block;
  margin: 10px auto;
  color: white;
  border-radius: 4px;
  transition: .3s;
  cursor: pointer;
}
form input[type="submit"]:hover{
  background: white;
  color: #103063;
}
form{
    max-width: 600px;
    margin: auto;
}
form span{
    width: 100%;
    display: flex;
    padding: 0px 0px;
    margin: 25px auto;
    align-content: center;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    position: relative;
}
form span b{
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 16px;
    background: rgb(40, 85, 138);
    top: -8px;
    left: 10px;
    font-size: 13px;
    padding: 3px 10px;
}
.kapcsolat ul li{
    margin: 10px auto;
}
.termek-lablec ul li{
    display: inline-block!important;
}
/* Utility Classes */
.container {
  max-width: 1180px;
  text-align: center;
  margin: 0 auto;
  padding: 0 3rem;
}
#lablec{
    background: rgb(40, 85, 138);
    color: white!important;
    padding: 10px;
}
#lablec h2, #rolunk h2{
    color: white;
    max-width: 600px;
    margin: auto;
}
#lablec h2:after, #rolunk h2:after{
    background: white;
}

.lead {
  font-size: 1.3rem;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  padding: 1rem;
  margin:10px auto;
  color: #fff;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-color-hover);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color-hover);
}

/* Text colors */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--light-color);
}

.bg-light {
  background: var(--light-color);
  color: #333;
}

.mb {
  margin-bottom: 1rem;
}

.mt {
  margin-top: 1rem;
}


@media screen and (max-width: 580px) {
  .hide-on-small {
    display: none;
  }

  #showcase {
    height: 50vh;
  }

  #showcase .container {
    margin-top: 15vh;
  }
  .container{
    padding: 0 1rem;
  }

  #showcase h1 {
    font-size: 3rem;
  }

  #showcase h2 {
    font-size: 1.5rem;
  }
}
.cf:before,
.cf:after {
  content: '';
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}
.termek-lablec ul li a{
    font-size: 12px;
    padding: 3px 6px;
    border: 1px solid white;
    border-radius: 3px;
    display: block;
    margin: 3px;
}

@media screen and (max-width: 780px) {
  .gift-cards {
    grid-template-columns: 1fr;
  }

  footer .footer-cols {
    display: none;
  }
}

@media screen and (max-height: 580px) {
  #showcase p.lead {
    display: none;
  }
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgb(11, 106, 161);
    z-index: 100;
}
.offer-btn{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border: 1px solid white;
    border-radius: 4px;
    padding: 6px 15px;
    font-size: 14px;
    color: white;
    animation-name: btn;
    animation-duration: 2s;
    animation-play-state: running;
    animation-iteration-count: infinite;

}
nav ul{
    text-align: right;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 160px);
}
li{
    list-style: none;
    font-size: 14px;
}
nav ul li i{
  margin: auto 10px;
}
@media (max-width: 800px){
    nav ul li i{
        display: none;
    }
}
.logo{
  width: 200px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  position: fixed;
  top: -125px;
  left: -65px;
  background-image: linear-gradient(to right top, #3e8b8e, #00a895, #00c284, #5cd95f, #a8eb12);
  z-index: 100000;
  justify-content: center;
  align-content: center;
  align-items: center;
  transform: rotate(-52deg);
  display: block;
}
.logo:after{
  transform: rotate(5deg);
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  border-radius: 20px;
  bottom: 10px;
  background-image: linear-gradient(to right top, #3e6f8e, #1271a8, #0071c1, #006ed8, #1267eb);
  content: '';
  z-index: -1;
}
.logo img{
  width: 70px;
  position: relative;
  z-index: 1000000000;
  transform: rotate(52deg) translate(105px, 50px);
}
@keyframes btn{
  0% {transform: translateY(-50%) scale(1);}
  50% {transform: translateY(-50%) scale(1.1);}
  100% {transform: translateY(-50%) scale(1);}
}
