*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
    scroll-behavior:smooth;
    }
    
    body{
    background:#0b0b0d;
    color:white;
    line-height:1.6;
    }
    
    header{
    position:fixed;
    top:0;
    width:100%;
    background:#111;
    padding:14px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    border-bottom:1px solid #222;
    }
    
    .logo{
    font-size:28px;
    font-weight:bold;
    letter-spacing:1px;
    }
    
    nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    transition:.3s;
    }
    
    nav a:hover{
    color:#d4af37;
    }
    
    .hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.8)),url("https://images.unsplash.com/photo-1478720568477-152d9b164e26?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    }
    
    .hero h1{
    font-size:60px;
    margin-bottom:20px;
    }
    
    .hero p{
    font-size:22px;
    max-width:700px;
    margin:auto;
    }
    
    .button{
    display:inline-block;
    margin-top:35px;
    padding:16px 40px;
    background:#d4af37;
    color:black;
    font-weight:bold;
    text-decoration:none;
    border-radius:8px;
    }
    
    section{
    padding:100px 8%;
    }
    
    h2{
    font-size:40px;
    margin-bottom:30px;
    text-align:center;
    }
    
    .card{
    background:#181818;
    padding:30px;
    border-radius:15px;
    max-width:1000px;
    margin:auto;
    }
    
    .card img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
    object-fit:cover;
    }
    
    .price{
    font-size:38px;
    color:#d4af37;
    margin:15px 0;
    }
    
    .old{
    text-decoration:line-through;
    color:#777;
    font-size:22px;
    }
    
    ul{
    padding-left:20px;
    margin-top:15px;
    }
    
    form{
    display:grid;
    gap:15px;
    max-width:700px;
    margin:auto;
    }
    
    input,textarea{
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:16px;
    }
    
    button{
    padding:18px;
    background:#d4af37;
    border:none;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    border-radius:8px;
    }

    #calendar{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(98px,1fr));
    gap:12px;
    margin:18px 0 32px;
    }

    .calendar-day{
    min-height:78px;
    padding:12px 10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    background:#d4af37;
    color:#111;
    }

    .calendar-day small{
    font-size:12px;
    line-height:1.2;
    }

    .calendar-day.selected{
    background:#4caf50;
    color:white;
    }

    .calendar-day.unavailable{
    background:#3a3a3d;
    color:#cfcfcf;
    cursor:not-allowed;
    }

    .admin-panel{
    display:grid;
    gap:15px;
    margin-bottom:25px;
    }

    .admin-tools[hidden]{
    display:none;
    }

    .admin-status{
    min-height:24px;
    color:#cfcfcf;
    }

    .admin-status.error{
    color:#ff8a8a;
    }

    .admin-status.success{
    color:#92e69b;
    }

    .blocked-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
    }

    .blocked-row button{
    width:auto;
    min-width:120px;
    }
    
    .faq{
    max-width:900px;
    margin:auto;
    }
    
    .question{
    margin-bottom:30px;
    }
    
    footer{
    background:#111;
    padding:40px;
    text-align:center;
    color:#999;
    }
    
    @media(max-width:768px){
    
    .hero h1{
    font-size:38px;
    }
    
    nav{
    display:none;
    }
    
    section{
    padding:80px 25px;
    }
    
    }

    .slider{
        text-align:center;
      }
      
      .slider img{
        width:100%;
        max-height:500px;
        object-fit:contain;
        border-radius:12px;
        background:#111;
      }
      
      .slider button{
        margin:10px;
        padding:12px 18px;
      }

      .slider-controls{
        display:flex;
        justify-content:center;
        gap:15px;
        margin:15px 0;
    }
    
    .slider-controls button{
        width:50px;
        height:50px;
        border:none;
        border-radius:50%;
        font-size:22px;
        cursor:pointer;
    }
    
    .thumbnails{
        display:flex;
        justify-content:center;
        gap:15px;
        margin-top:20px;
    }
    
    .thumb{
        width:120px;
        height:70px;
        object-fit:cover;
        border-radius:10px;
        cursor:pointer;
        opacity:.6;
        border:3px solid transparent;
    }
    
    .active-thumb{
        opacity:1;
        border-color:#d4af37;
    }   

    .logo{
        display:flex;
        align-items:center;
        gap:12px;
        font-size:22px;
        font-weight:bold;
    }
    
    .logo img{
        width:112px;
        height:56px;
        object-fit:contain;
    }

    @media(max-width:520px){
    #calendar{
    grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .blocked-row{
    display:grid;
    }
    }
