/* Stili di base */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #FF6B35;
}

.search-bar input {
    padding: 15px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #E65A2D;
}

/* SEZIONE PRINCIPALE */
.main-section {
    display: flex;
    margin-top: 120px;
}

.left-box, .right-box {
    flex: 1;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.left-box {
    background-image: url('room-background1.jpg');
}

.right-box {
    background-image: url('room-background2.jpg');
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.cta {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta:hover {
    background: #E65A2D;
}

/* ANNUNCI IN EVIDENZA */
.annunci {
    text-align: center;
    padding: 50px 20px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 250px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card-info h3 {
    font-size: 20px;
    margin: 10px 0;
}

.card-info button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.card-info button:hover {
    background: #E65A2D;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
