*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f7f7;
    color:#333;
}

header{
    background:#0b4f6c;
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}



.logo img{
    width:500px;
    height:500px;
    object-fit:contain;
    border-radius:50%;
    background:none;
    padding:2px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav ul li a:hover{
    color:#ffd166;
}

.hero h1{
    color:white;
    font-size:60px;
}

.hero p{
    color:white;
    margin:40px 0;
    font-size:22px;
}

.btn,
.btn2{
    padding:15px 35px;
    margin:10px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.btn{
    background:#ffd166;
    color:#222;
}

.btn2{
    background:#25D366;
    color:white;
}

section{
    padding:90px 10%;
}

h2{
    text-align:center;
    margin-bottom:30px;
    color:#0b4f6c;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

footer{
    background:#0b4f6c;
    color:white;
    text-align:center;
    padding:30px;
}

.btn:hover{
    background:#ffc233;
    transform:scale(1.05);
    transition:.3s;
}

.btn2:hover{
    background:#20b858;
    transform:scale(1.05);
    transition:.3s;
}

#recenzii .btn{
    display:inline-block;
    margin-top:25px;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:contain;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:relative;
    z-index:2;
    background:transparent;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 18px 35px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
}

#calendar{
    background:#f8f9fb;
}

.calendar-text{
    text-align:center;
    max-width:700px;
    margin:0 auto 25px;
    color:#555;
    font-size:18px;
    line-height:1.6;
}

.legend{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.legend div{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.green-box,
.yellow-box,
.orange-box,
.red-box{
    width:18px;
    height:18px;
    border-radius:5px;
}

.green-box{
    background:#2ecc71;
}

.yellow-box{
    background:#f1c40f;
}

.orange-box{
    background:#e67e22;
}

.red-box{
    background:#e74c3c;
}

.month{
    background:white;
    border-radius:15px;
    padding:25px;
    margin:35px auto;
    max-width:950px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.month h3{
    text-align:center;
    margin-bottom:20px;
    color:#0b4f6c;
}

.calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:8px;
}

.day-name{
    text-align:center;
    font-weight:bold;
    color:#0b4f6c;
    padding:10px;
}

.day{
    min-height:80px;
    border-radius:10px;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    transition:.3s;
}

.day:hover{
    transform:scale(1.05);
}

.day .rooms{
    font-size:13px;
    margin-top:5px;
}

.green{
    background:#2ecc71;
}

.yellow{
    background:#f1c40f;
    color:#222;
}

.orange{
    background:#e67e22;
}

.red{
    background:#e74c3c;
}

.empty{
    visibility:hidden;
}