* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    color: #000;
    background-color: #ffffff;

    /* PATTERN LEGGERISSIMO */
    background-image: radial-gradient(rgba(208, 75, 58, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

/* Titolo sopra */
.top-title {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #d04b3a;
    font-weight: 600;
}

/* Booking sopra */
.top-booking {
    margin-bottom: 30px;
}

/* Immagine */
.image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Titolo principale */
h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Testi */
.info {
    font-size: 18px;
    line-height: 1.7;
    margin: 12px 0;
}

/* Link */
a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Linea decorativa */
.gold-line {
    width: 50px;
    height: 2px;
    background: #d04b3a;
    margin: 25px auto;
}

/* Bottone */
.btn-booking {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: #d04b3a;
    color: #fff;
    border: none;

    transition: all 0.3s ease;
}

.btn-booking:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 600px) {

    h1 {
        font-size: 26px;
    }

    .top-title {
        font-size: 14px;
    }

    .info {
        font-size: 15px;
    }

    .container {
        padding: 30px 15px;
    }
}