﻿/*=========================================
  PAGINA TOUR
=========================================*/

.nexttour-page {
    background: #f3efdc;
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 70px;
}

/*=========================================
  FOTO PANORAMICA
=========================================*/

.nexttour-hero {
    width: 92%;
    max-width: 1500px;
    margin: 0 auto 45px auto;
}

.hero-image {
    width: 100%;
    display: block;
    border: 12px solid #fff;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/*=========================================
  TESTO
=========================================*/

.nexttour-content {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.nexttour-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 300;
    color: #102548;
    margin-bottom: 8px;
}

.nexttour-date {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #102548;
    font-style: italic;
    margin-bottom: 35px;
}

.nexttour-description {
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.9;
    color: #222;
    text-align: justify;
    margin-bottom: 60px;
}

.nexttour-name {
    text-align: center;
    font-weight: bold;
}

.nexttour-card-date {
    margin-top: 8px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    color: #1d3766;
    line-height: 1.2;
}

/*=========================================
  INTERESSE
=========================================*/

.nexttour-interest {
    text-align: center;
    margin-top: 40px;
}

    .nexttour-interest p {
        font-family: Georgia, serif;
        font-size: 20px;
        color: #102548;
        margin-bottom: 25px;
    }

.interest-button {
    background: #102548;
    color: white;
    border: none;
    padding: 16px 42px;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .25s;
}

    .interest-button:hover {
        background: #1c3c70;
    }

/*=====================================================
  POPUP MANIFESTAZIONE DI INTERESSE
=====================================================*/

.overlay-login {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.60);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.popup-login {
    width: 520px;
    max-width: 92%;
    background: #f7f2df;
    border: 2px solid #102548;
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.popup-logo {
    width: 140px;
    margin-bottom: 15px;
}

.popup-login h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 300;
    color: #102548;
    margin: 10px 0 20px 0;
}

.popup-login p {
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.popup-input {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    font-size: 17px;
    box-sizing: border-box;
}

    .popup-input:focus {
        outline: none;
        border-color: #102548;
    }

.popup-button {
    width: 100%;
    padding: 14px;
    background: #102548;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: .25s;
}

    .popup-button:hover {
        background: #1c3c70;
    }

.popup-close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 26px;
    color: #102548;
    cursor: pointer;
    font-weight: bold;
}

    .popup-close:hover {
        color: #1c3c70;
    }

.popup-error {
    display: block;
    min-height: 22px;
    color: #b00020;
    font-size: 15px;
    margin: 8px 0 12px 0;
}