*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#050505;
    color:white;
}

.app{
    padding-bottom:50px;
}

/* HEADER */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    background:#0d0d0d;
    border-bottom:1px solid #1f1f1f;
}

.logoBlock{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logoBlock h1{
    font-size:22px;
    color:#4cff67;
}

.logoBlock span{
    color:#999;
    font-size:13px;
}

.burger{
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* MENU */

.mobileMenu{
    display:none;
    flex-direction:column;
    background:#111;
    padding:10px;
}

.mobileMenu a{
    color:white;
    text-decoration:none;
    padding:12px;
    border-bottom:1px solid #1f1f1f;
}

/* HERO */

.hero{
    padding:40px 20px;
    text-align:center;
}

.hero h2{
    font-size:32px;
    margin-bottom:10px;
}

.hero p{
    color:#aaa;
}

/* ADDRESS */

.addressBlock{
    margin:20px;
    padding:20px;
    border-radius:18px;
    background:#101010;
    border:1px solid #1e1e1e;
}

.addressTitle{
    color:#4cff67;
    margin-bottom:8px;
}

.addressText{
    font-size:18px;
}

/* TABLES */

.tablesSection{
    padding:20px;
}

.sectionTitle{
    font-size:24px;
    margin-bottom:20px;
}

.vipTitle{
    margin-top:40px;
}

.tablesGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.tableCard{
    padding:20px;
    border-radius:20px;
    cursor:pointer;
    transition:0.3s;
    text-align:center;
    border:2px solid transparent;
}

.tableCard:hover{
    transform:scale(1.03);
}

.tableName{
    font-size:20px;
    margin-bottom:10px;
}

.tableStatus{
    font-size:14px;
}

/* COLORS */

.free{
    background:#0f2c13;
    border-color:#4cff67;
}

.booked{
    background:#3b320d;
    border-color:#ffd93b;
}

.occupied{
    background:#3a1111;
    border-color:#ff4747;
}

/* MODAL */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.8);
    display:none;
    justify-content:center;
    align-items:flex-end;
    z-index:999;
}

.modalContent{
    width:100%;
    background:#101010;
    border-radius:25px 25px 0 0;
    padding:20px;
}

.modalTop{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.closeBtn{
    background:none;
    border:none;
    color:white;
    font-size:32px;
}

.tableInfo{
    margin-bottom:20px;
    color:#aaa;
}

form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

input{
    padding:15px;
    border:none;
    border-radius:12px;
    background:#1a1a1a;
    color:white;
}

.bookBtn{
    padding:16px;
    border:none;
    border-radius:14px;
    background:#4cff67;
    color:black;
    font-weight:bold;
    cursor:pointer;
}

/* DESKTOP */

@media(min-width:900px){

    .tablesGrid{
        grid-template-columns:repeat(5,1fr);
    }

    .modal{
        align-items:center;
    }

    .modalContent{
        width:450px;
        border-radius:20px;
    }

}