﻿/* Newsletter popup */
.newsletter-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    padding: 30px;
    background: #fff; 
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.newsletter-popup-header {
    background: none;
    color: #73cae9;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    font-family: 'DKLemonYellowSun', sans-serif;
    letter-spacing: 5px;
}

.newsletter-popup-content {
    margin-top: 20px;
}
  
.newsletter-popup-close {
    font-family: 'PoirotOne', serif;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #73cae9;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    font-size: 16px;
}

.newsletter-popup-close:hover {
    background: #73cae9;
    color: #fff;
}

.newsletter-popup input[type="text"],
.newsletter-popup input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #73cae9;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-popup-adatvedelmi-link {
    text-decoration: underline;
    font-family: 'PoirotOne', serif;
    font-size: 0.8rem;
}

.newsletter-popup button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background: #73cae9;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    border: 2px solid #73cae9;
    margin-top: 20px;
}

.newsletter-popup button[type="submit"]:hover {
    background: #fff;
    color: #73cae9;
}
  
.newsletter-popup-response {
    margin-top: 20px;
    text-align: center;
}

/* <<==--   RESPONSIVE   --==>> */
/* Fekvő nézet */
@media (orientation: landscape) {
    
}

/* Álló nézet */
@media (orientation: portrait) {
    #site-bg-landscape {display: none;}
    #site-bg-portrait {display: block;}
}

/* 1680 px, Tablet fekvő (1670 - 1919px)*/
@media only screen and (max-width: 1670px) {
    
}

/* 1440 px, Tablet fekvő (1430 - 1669px)*/
@media only screen and (max-width: 1430px) {
    
}

/* 1366 px, Tablet fekvő (1356 - 1429px)*/
@media only screen and (max-width: 1356px) {
    
}

/* 1280 px, Tablet fekvő (1270 - 1355px)*/
@media only screen and (max-width: 1270px) {
    
}

/* 1024 px, Tablet fekvő (1014 - 1269px)*/
@media only screen and (max-width: 1279px) {
    
}

/* 768 px, Tablet álló (768 - 1013px) */
@media only screen and (max-width: 991px) {
    
}

/* 576 px, Telefon fekvő (576 - 767px) */
@media only screen and (max-width: 767px) {
    
}

/* 475 px, Telefon álló (475 - 575px) */
@media only screen and (max-width: 575px) {
    
}

/* 435 px, Telefon álló (435 - 474px) */
@media only screen and (max-width: 474px) {
    
}

/* 415 px, Telefon álló (415 - 434px) */
@media only screen and (max-width: 434px) {
    .newsletter-popup {
        width: 290px;
        padding: 10px;
    }
}

/* 355 px, Telefon álló (355 - 434px) */
@media only screen and (max-width: 414px) {
    
}

/* 320 px, Telefon álló (320 - 354px) */
@media only screen and (max-width: 354px) {
    
}

/* 300 px, Telefon álló (300 - 319px) */
@media only screen and (max-width: 319px) {
    
}